diff --git a/.github/workflows/build-docker-image.yml b/.github/workflows/build-docker-image.yml index a4e0948..f490714 100644 --- a/.github/workflows/build-docker-image.yml +++ b/.github/workflows/build-docker-image.yml @@ -23,7 +23,7 @@ jobs: - name: Login to Docker Hub # Only if we need to push an image if: ${{ github.event_name == 'release' && github.event.action == 'published' }} - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -31,7 +31,7 @@ jobs: - name: Login to Github Container Registry # Only if we need to push an image if: ${{ github.event_name == 'release' && github.event.action == 'published' }} - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }}