Skip to content

Commit 91c9c0d

Browse files
mattgodboltclaude
andcommitted
Bump GitHub Actions to latest major versions
- setup-buildx-action: v2 -> v3 - login-action: v2 -> v3 - build-push-action: v5 -> v6 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 67a1c04 commit 91c9c0d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
- jakt
3535
steps:
3636
- name: Docker Setup Buildx
37-
uses: docker/setup-buildx-action@v2
37+
uses: docker/setup-buildx-action@v3
3838
- name: Docker Login
39-
uses: docker/login-action@v2
39+
uses: docker/login-action@v3
4040
with:
4141
username: ${{ secrets.DOCKERHUB_USERNAME }}
4242
password: ${{ secrets.DOCKERHUB_PASSWORD }}
4343
- name: Build and push to Docker Hub
4444
id: hub_build
45-
uses: docker/build-push-action@v5
45+
uses: docker/build-push-action@v6
4646
with:
4747
push: ${{ github.ref == 'refs/heads/main' && 'true' || 'false' }}
4848
tags: compilerexplorer/${{ matrix.image }}-builder:latest
@@ -59,15 +59,15 @@ jobs:
5959
- heaptrack
6060
steps:
6161
- name: Docker Setup Buildx
62-
uses: docker/setup-buildx-action@v2
62+
uses: docker/setup-buildx-action@v3
6363
- name: Docker Login
64-
uses: docker/login-action@v2
64+
uses: docker/login-action@v3
6565
with:
6666
username: ${{ secrets.DOCKERHUB_USERNAME }}
6767
password: ${{ secrets.DOCKERHUB_PASSWORD }}
6868
- name: Build and push to Docker Hub
6969
id: hub_build
70-
uses: docker/build-push-action@v5
70+
uses: docker/build-push-action@v6
7171
with:
7272
push: ${{ github.ref == 'refs/heads/main' && 'true' || 'false' }}
7373
tags: compilerexplorer/${{ matrix.image }}-builder:latest-arm64

0 commit comments

Comments
 (0)