Skip to content

Commit 44d03f9

Browse files
committed
upd: github workflows
1 parent f935d0d commit 44d03f9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/docker_auto.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
${{ runner.os }}-buildx-
4242
- name: Check out repo
4343
id: checkout
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545

4646
- name: Prepare env variables
4747
id: env
@@ -54,7 +54,7 @@ jobs:
5454
- name: Build and push latest stable branch
5555
if: ${{ env.BUILD_VER == env.LASTEST_VERSION }}
5656
id: docker_build_latest
57-
uses: docker/build-push-action@v5
57+
uses: docker/build-push-action@v6
5858
with:
5959
context: .
6060
file: ./Dockerfile
@@ -82,7 +82,7 @@ jobs:
8282
- name: Build and push everything else
8383
if: ${{ env.BUILD_VER != env.LASTEST_VERSION }}
8484
id: docker_build_regular
85-
uses: docker/build-push-action@v5
85+
uses: docker/build-push-action@v6
8686
with:
8787
context: .
8888
file: ./Dockerfile

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
PYTHONUNBUFFERED: 1
1717

1818
steps:
19-
- uses: actions/checkout@v4
20-
- uses: actions/setup-python@v4
19+
- uses: actions/checkout@v5
20+
- uses: actions/setup-python@v6
2121
with:
2222
python-version: "3.13"
2323
- name: Install poetry
@@ -59,15 +59,15 @@ jobs:
5959
key: ${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
6060

6161
- name: Checkout
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363
with:
6464
fetch-depth: 0
6565

6666
- name: Switch to current branch
6767
run: git checkout ${{ env.BRANCH }}
6868

6969
- name: Set up Python
70-
uses: actions/setup-python@v5
70+
uses: actions/setup-python@v6
7171
with:
7272
python-version: ${{ matrix.python-version }}
7373

0 commit comments

Comments
 (0)