From 888187dfb6aec8bde37b3e0bed51e145977e6b59 Mon Sep 17 00:00:00 2001 From: phoebus-84 Date: Tue, 2 Jun 2026 19:02:53 +0200 Subject: [PATCH] fix: bump actions to latest major versions to resolve Node.js 20 deprecation - actions/checkout: v3 -> v4 - docker/login-action: v2 -> v3 - docker/metadata-action: v4 -> v5 - docker/build-push-action: v3 -> v6 --- .github/workflows/publish-ghcr.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-ghcr.yml b/.github/workflows/publish-ghcr.yml index c267c90..ba8485d 100644 --- a/.github/workflows/publish-ghcr.yml +++ b/.github/workflows/publish-ghcr.yml @@ -20,12 +20,12 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -33,7 +33,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ inputs.image_name || github.repository }} flavor: | @@ -46,7 +46,7 @@ jobs: type=raw,value=latest,enable=${{ endsWith(github.ref, github.event.repository.default_branch) }} - name: Build and push Docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: context: . push: true