Skip to content

Commit 35324ca

Browse files
beachdwellerclaude
andcommitted
chore: bump docker actions to v4
- docker/setup-qemu-action v3 → v4 - docker/setup-buildx-action v3 → v4 - docker/login-action v3 → v4 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9b93bb6 commit 35324ca

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/docker-manual-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,22 @@ jobs:
3434
echo "ghcr_image=${GHCR_IMAGE}" >> $GITHUB_OUTPUT
3535
3636
- name: Set up QEMU
37-
uses: docker/setup-qemu-action@v3
37+
uses: docker/setup-qemu-action@v4
3838
with:
3939
platforms: all
4040

4141
- name: Set up Docker Buildx
4242
id: buildx
43-
uses: docker/setup-buildx-action@v3
43+
uses: docker/setup-buildx-action@v4
4444

4545
- name: Login to DockerHub
46-
uses: docker/login-action@v3
46+
uses: docker/login-action@v4
4747
with:
4848
username: ${{ vars.DOCKER_USERNAME }}
4949
password: ${{ secrets.DOCKER_PASSWORD }}
5050

5151
- name: Login to Github Container Registry
52-
uses: docker/login-action@v3
52+
uses: docker/login-action@v4
5353
with:
5454
registry: ghcr.io
5555
username: ${{ github.repository_owner }}

.github/workflows/docker-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,22 @@ jobs:
3131
echo "ghcr_image=${GHCR_IMAGE}" >> $GITHUB_OUTPUT
3232
3333
- name: Set up QEMU
34-
uses: docker/setup-qemu-action@v3
34+
uses: docker/setup-qemu-action@v4
3535
with:
3636
platforms: all
3737

3838
- name: Set up Docker Buildx
3939
id: buildx
40-
uses: docker/setup-buildx-action@v3
40+
uses: docker/setup-buildx-action@v4
4141

4242
- name: Login to DockerHub
43-
uses: docker/login-action@v3
43+
uses: docker/login-action@v4
4444
with:
4545
username: ${{ vars.DOCKER_USERNAME }}
4646
password: ${{ secrets.DOCKER_PASSWORD }}
4747

4848
- name: Login to Github Container Registry
49-
uses: docker/login-action@v3
49+
uses: docker/login-action@v4
5050
with:
5151
registry: ghcr.io
5252
username: ${{ github.repository_owner }}

0 commit comments

Comments
 (0)