From 1fb78e581d15dda49b4abff420ba386d3357c78a Mon Sep 17 00:00:00 2001 From: xynydev <60004820+xynydev@users.noreply.github.com> Date: Wed, 24 Apr 2024 21:23:00 +0300 Subject: [PATCH] fix: container action versions --- .github/workflows/build_container.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_container.yml b/.github/workflows/build_container.yml index 7550e45b..980f0449 100644 --- a/.github/workflows/build_container.yml +++ b/.github/workflows/build_container.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@v4 - name: Log in to the Container registry - uses: docker/login-action@3.1.0 + uses: docker/login-action@3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -31,7 +31,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@5.5.1 + uses: docker/metadata-action@5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | @@ -40,7 +40,7 @@ jobs: type=sha - name: Build and push Docker image - uses: docker/build-push-action@5.3.0 + uses: docker/build-push-action@5 with: context: . file: ./Dockerfile