From 661ce8828743a76c51a0e5466b521a0e12eec50a Mon Sep 17 00:00:00 2001 From: Raymond Kuiper Date: Wed, 13 Mar 2024 11:50:43 +0100 Subject: [PATCH] updated versions --- .github/workflows/publish-image.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index e32d212..6252706 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -27,7 +27,7 @@ jobs: # run: docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -35,14 +35,14 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} tags: | type=semver,pattern={{ version }} - name: Build and push Docker image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . push: true