diff --git a/.github/workflows/build-testing-image.yml b/.github/workflows/build-testing-image.yml index 1efa60d..b70255d 100644 --- a/.github/workflows/build-testing-image.yml +++ b/.github/workflows/build-testing-image.yml @@ -41,7 +41,7 @@ jobs: uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0 - name: Log in to GitHub Container Registry - uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0 + uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/docker-build/action.yml b/docker-build/action.yml index abfd0a6..0137897 100644 --- a/docker-build/action.yml +++ b/docker-build/action.yml @@ -321,7 +321,7 @@ runs: - name: Login to GitHub Container Registry if: ${{ inputs.push == 'true' }} - uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0 + uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/docker-publish/action.yml b/docker-publish/action.yml index 6b6ead6..7c42619 100644 --- a/docker-publish/action.yml +++ b/docker-publish/action.yml @@ -265,14 +265,14 @@ runs: - name: Login to Docker Hub if: inputs.registry == 'dockerhub' || inputs.registry == 'both' - uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0 + uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 with: username: ${{ inputs.dockerhub-username }} password: ${{ inputs.dockerhub-token }} - name: Login to GitHub Container Registry if: inputs.registry == 'github' || inputs.registry == 'both' - uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0 + uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4.0.0 with: registry: ghcr.io username: ${{ github.actor }}