From b53517a1d13f52e4dba12fccdf1ca3bdc303b6cf Mon Sep 17 00:00:00 2001 From: Felix Dittrich Date: Wed, 20 Nov 2024 12:06:35 +0100 Subject: [PATCH] [CI] public docker change commit tag to version (#1789) --- .github/workflows/public_docker_images.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/public_docker_images.yml b/.github/workflows/public_docker_images.yml index 18bd14abdd..a00c91859c 100644 --- a/.github/workflows/public_docker_images.yml +++ b/.github/workflows/public_docker_images.yml @@ -35,7 +35,7 @@ jobs: uses: actions/checkout@v4 - name: Log in to the Container registry - uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -49,7 +49,7 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@115662203e5f4c9b240a57397f721baaab82a488 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ github.repository }} tags: | @@ -60,7 +60,7 @@ jobs: - name: Build Docker image id: build - uses: docker/build-push-action@5e99dacf67635c4f273e532b9266ddb609b3025a + uses: docker/build-push-action@v6 with: context: . build-args: | @@ -77,7 +77,7 @@ jobs: - name: Push Docker image # Push only if the CI is not triggered by "PR on main" if: ${{ (github.ref == 'refs/heads/main' && github.event_name != 'pull_request') || (startsWith(github.ref, 'refs/tags') && github.event_name == 'push') }} - uses: docker/build-push-action@5e99dacf67635c4f273e532b9266ddb609b3025a + uses: docker/build-push-action@v6 with: context: . build-args: |