Fix gha version

This commit is contained in:
nguu0123
2025-08-10 12:26:51 +03:00
parent 0f58b3fd32
commit e221b077e5

View File

@@ -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