Skip to content

Commit 53be032

Browse files
committed
Update GitHub Actions to Node.js 24 compatible versions
- actions/checkout v4 → v5 - docker/setup-buildx-action v3 → v4 - docker/login-action v3 → v4 - docker/metadata-action v5 → v6 - docker/build-push-action v5 → v6
1 parent dab83a9 commit 53be032

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build-and-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Set up Docker Buildx
30-
uses: docker/setup-buildx-action@v3
30+
uses: docker/setup-buildx-action@v4
3131

3232
- name: Log in to GitHub Container Registry
3333
# Only login for version tag pushes (actual deployments)
3434
if: startsWith(github.ref, 'refs/tags/v')
35-
uses: docker/login-action@v3
35+
uses: docker/login-action@v4
3636
with:
3737
registry: ${{ env.REGISTRY }}
3838
username: ${{ github.actor }}
@@ -56,7 +56,7 @@ jobs:
5656
5757
- name: Extract metadata (tags, labels)
5858
id: meta
59-
uses: docker/metadata-action@v5
59+
uses: docker/metadata-action@v6
6060
with:
6161
images: ${{ steps.image.outputs.name }}
6262
tags: |
@@ -73,7 +73,7 @@ jobs:
7373
type=ref,event=branch
7474
7575
- name: Build and push Docker image
76-
uses: docker/build-push-action@v5
76+
uses: docker/build-push-action@v6
7777
with:
7878
context: .
7979
# Only push on version tags (v1.0.0), NOT on PRs or main branch

0 commit comments

Comments
 (0)