Skip to content

Commit 432af8b

Browse files
torrid-fishclaude
andcommitted
ci: bump CD actions to Node 24 majors (checkout/docker)
GitHub is forcing Node 20 actions off the runners from 2026-06-02. Bump checkout v4->v6 and the docker/* actions to their latest majors, all of which run on Node 24. Inputs are unchanged. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent bcb9329 commit 432af8b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/cd.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,24 @@ jobs:
2727
IMAGE_NAME: sessatakuma/api-tools
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131

3232
- name: Set up QEMU
33-
uses: docker/setup-qemu-action@v3
33+
uses: docker/setup-qemu-action@v4
3434

3535
- name: Set up Docker Buildx
36-
uses: docker/setup-buildx-action@v3
36+
uses: docker/setup-buildx-action@v4
3737

3838
- name: Log in to GHCR
39-
uses: docker/login-action@v3
39+
uses: docker/login-action@v4
4040
with:
4141
registry: ${{ env.REGISTRY }}
4242
username: ${{ github.actor }}
4343
password: ${{ secrets.GITHUB_TOKEN }}
4444

4545
- name: Extract metadata
4646
id: meta
47-
uses: docker/metadata-action@v5
47+
uses: docker/metadata-action@v6
4848
with:
4949
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
5050
tags: |
@@ -56,7 +56,7 @@ jobs:
5656
type=raw,value=stable,enable=${{ startsWith(github.ref, 'refs/tags/v') }}
5757
5858
- name: Build and push
59-
uses: docker/build-push-action@v6
59+
uses: docker/build-push-action@v7
6060
with:
6161
context: .
6262
file: ./Dockerfile # adjust if the api-tools Dockerfile path differs

0 commit comments

Comments
 (0)