diff --git a/.github/workflows/publish-docker-image.yml b/.github/workflows/publish-docker-image.yml index 4f04cd4..56fe957 100644 --- a/.github/workflows/publish-docker-image.yml +++ b/.github/workflows/publish-docker-image.yml @@ -17,11 +17,11 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 # User triggering the action is authenticated to the container registry - name: Log in to the Container registry - uses: docker/login-action@v1.10.0 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.actor }} @@ -30,12 +30,12 @@ jobs: # Basically sets the image tag from the release - name: Extract metadata for Docker id: meta - uses: docker/metadata-action@v3.6.0 + uses: docker/metadata-action@v4 with: images: ghcr.io/${{ env.IMAGE_NAME }} - name: Build and push Docker image - uses: docker/build-push-action@v2.7.0 + uses: docker/build-push-action@v3 with: context: . push: true