Skip to content

Commit 74946d0

Browse files
.
1 parent 86aed06 commit 74946d0

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish-dockerhub.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,23 @@ jobs:
1010
runs-on: ubuntu-latest
1111
environment: dockerhub
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
with:
1515
ref: master
1616

1717
- name: Set up QEMU
18-
uses: docker/setup-qemu-action@v3
18+
uses: docker/setup-qemu-action@v4
1919
with:
2020
platforms: all
2121

2222
- name: Set up Docker Buildx
2323
id: buildx
24-
uses: docker/setup-buildx-action@v3
24+
uses: docker/setup-buildx-action@v4
2525
with:
2626
version: latest
2727

2828
- name: Login to DockerHub
29-
uses: docker/login-action@v3
29+
uses: docker/login-action@v4
3030
with:
3131
username: ${{ secrets.DOCKER_HUB_USER }}
3232
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
id-token: write
1414
steps:
1515

16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
ref: master
1919

.github/workflows/run_tox.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Run pre-commit
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
- uses: actions/setup-python@v6
1212
with:
1313
python-version: '3.12'
@@ -23,7 +23,7 @@ jobs:
2323
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2424

2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- name: Set up Python ${{ matrix.python-version }}
2828
uses: actions/setup-python@v6
2929
with:

0 commit comments

Comments
 (0)