Skip to content

Commit e55a124

Browse files
mattgodboltclaude
andcommitted
Bump GitHub Actions to latest major versions
- setup-buildx-action -> v3 - login-action -> v3 - build-push-action -> v6 - cache-to: add mode=max for better layer caching Fixes deprecated set-output and save-state warnings. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 0d3962e commit e55a124

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Docker Setup Buildx
11-
uses: docker/setup-buildx-action@v1
11+
uses: docker/setup-buildx-action@v3
1212
- name: Docker Login
13-
uses: docker/login-action@v1
13+
uses: docker/login-action@v3
1414
with:
1515
username: ${{ secrets.DOCKERHUB_USERNAME }}
1616
password: ${{ secrets.DOCKERHUB_PASSWORD }}
1717
- name: Build and push to Docker Hub
1818
id: hub_build
19-
uses: docker/build-push-action@v2
19+
uses: docker/build-push-action@v6
2020
with:
2121
push: true
2222
tags: compilerexplorer/ruby-builder:latest
2323
cache-from: type=registry,ref=compilerexplorer/ruby-builder:latest
24-
cache-to: type=inline
24+
cache-to: type=inline,mode=max
2525
- name: Docker Hub Image Digest
2626
run: echo ${{ steps.hub_build.outputs.digest }}

0 commit comments

Comments
 (0)