From e221b077e52d29fbbdc6375cd9c507cfa83e0f87 Mon Sep 17 00:00:00 2001 From: nguu0123 Date: Sun, 10 Aug 2025 12:26:51 +0300 Subject: [PATCH] Fix gha version --- .github/workflows/build-and-publish-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-publish-image.yml b/.github/workflows/build-and-publish-image.yml index 3f4bbc6d..b5c6d7fb 100644 --- a/.github/workflows/build-and-publish-image.yml +++ b/.github/workflows/build-and-publish-image.yml @@ -54,7 +54,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | @@ -66,7 +66,7 @@ jobs: - name: Log in to the Container registry if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) - uses: docker/login-action@7ca345011cfb79dc351929d8d35c81db0542375e # v3 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -74,7 +74,7 @@ jobs: - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6 + uses: docker/build-push-action@v6 with: context: . platforms: linux/amd64,linux/arm64