Skip to content

Commit faafc85

Browse files
Merge pull request #31 from constructive-io/fix/ci-docker-actions-node24
ci: upgrade Docker actions to support Node.js 24
2 parents 758c828 + 22e8158 commit faafc85

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/docker.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,19 @@ jobs:
6969
node --experimental-strip-types scripts/generate.ts --only=${{ matrix.dir }}
7070
7171
- name: Set up Docker Buildx
72-
uses: docker/setup-buildx-action@v3
72+
uses: docker/setup-buildx-action@v4
7373

7474
- name: Log in to GHCR
7575
if: github.event_name != 'pull_request'
76-
uses: docker/login-action@v3
76+
uses: docker/login-action@v4
7777
with:
7878
registry: ${{ env.REGISTRY }}
7979
username: ${{ github.actor }}
8080
password: ${{ secrets.GITHUB_TOKEN }}
8181

8282
- name: Docker meta
8383
id: meta
84-
uses: docker/metadata-action@v5
84+
uses: docker/metadata-action@v6
8585
with:
8686
images: ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ matrix.name }}-fn
8787
tags: |
@@ -91,7 +91,7 @@ jobs:
9191
type=sha,format=short,prefix=
9292
9393
- name: Build and push
94-
uses: docker/build-push-action@v5
94+
uses: docker/build-push-action@v7
9595
with:
9696
context: .
9797
file: generated/${{ matrix.dir }}/Dockerfile

0 commit comments

Comments
 (0)