Skip to content

Commit ee6d6b6

Browse files
williamdesclaude
andcommitted
Bump all GitHub Actions to latest
- actions/checkout v4 -> v7 - docker/setup-qemu-action v3 -> v4 - docker/setup-buildx-action v3 -> v4 - actions/cache v4 -> v5 - docker/login-action v3 -> v4 - crazy-max/ghaction-import-gpg v6.3.0 -> v7.0.0 (SHA-pinned) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 616c700 commit ee6d6b6

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
version-range: ["5.2", "6.0"]
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v7
2121
# https://github.com/docker/setup-qemu-action
2222
- name: Set up QEMU
23-
uses: docker/setup-qemu-action@v3
23+
uses: docker/setup-qemu-action@v4
2424
# https://github.com/docker/setup-buildx-action
2525
- name: Set up Docker Buildx
26-
uses: docker/setup-buildx-action@v3
26+
uses: docker/setup-buildx-action@v4
2727
- name: Build action image
2828
run: PLATFORM="${{ matrix.platform }}" make docker-build
2929
env:

.github/workflows/cron.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ jobs:
2929
run: echo "snapshot_commit=$(jq -r '.commit' ./snapshot.json)" >> $GITHUB_ENV
3030
- name: Date to variable
3131
run: echo "snapshot_date=$(jq -r '.date' ./snapshot.json)" >> $GITHUB_ENV
32-
- uses: actions/cache@v4
32+
- uses: actions/cache@v5
3333
id: cache
3434
with:
3535
path: snapshot.json
3636
key: snapshot-${{ matrix.version-range }}-${{ env.snapshot_commit }}-${{ env.snapshot_date }}
3737
- name: Checkout repository
3838
if: steps.cache.outputs.cache-hit != 'true'
39-
uses: actions/checkout@v4
39+
uses: actions/checkout@v7
4040
with:
4141
fetch-depth: 1
4242
ref: 'main'
@@ -46,8 +46,8 @@ jobs:
4646
persist-credentials: true
4747
- name: Import GPG key
4848
if: steps.cache.outputs.cache-hit != 'true'
49-
# v6.3.0 - e89d40939c28e39f97cf32126055eeae86ba74ec
50-
uses: crazy-max/ghaction-import-gpg@e89d40939c28e39f97cf32126055eeae86ba74ec
49+
# v7.0.0 - 2dc316deee8e90f13e1a351ab510b4d5bc0c82cd
50+
uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd
5151
with:
5252
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
5353
passphrase: ${{ secrets.GPG_PASSPHRASE }}

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,19 @@ jobs:
1616

1717
steps:
1818
- name: Check out the repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v7
2020
- name: Login to DockerHub
21-
uses: docker/login-action@v3
21+
uses: docker/login-action@v4
2222
with:
2323
registry: docker.io
2424
username: ${{ secrets.DOCKER_REPOSITORY_LOGIN }}
2525
password: ${{ secrets.DOCKER_REPOSITORY_PASSWORD }}
2626
# https://github.com/docker/setup-qemu-action
2727
- name: Set up QEMU
28-
uses: docker/setup-qemu-action@v3
28+
uses: docker/setup-qemu-action@v4
2929
# https://github.com/docker/setup-buildx-action
3030
- name: Set up Docker Buildx
31-
uses: docker/setup-buildx-action@v3
31+
uses: docker/setup-buildx-action@v4
3232
- name: Build and push image
3333
run: make docker-build
3434
if: startsWith(github.ref, 'refs/tags/5.2/')

0 commit comments

Comments
 (0)