diff --git a/.github/workflows/build-image-template.yml b/.github/workflows/build-image-template.yml index 92f1345..4d78063 100644 --- a/.github/workflows/build-image-template.yml +++ b/.github/workflows/build-image-template.yml @@ -123,7 +123,7 @@ jobs: - name: Login to the CI registry 🔐 if: inputs.publish_to_registry == 'false' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ inputs.ci_registry }} username: ${{ github.actor }} @@ -203,7 +203,7 @@ jobs: ### The publish and periodic rebuilds are based on the latest stable github release tag - name: Login into official registry 🔐 if: inputs.publish_to_registry == 'true' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ inputs.registry }} username: ${{ secrets.REGISTRY_USERNAME }} diff --git a/.github/workflows/sign-images.yml b/.github/workflows/sign-images.yml index 626365d..ab2a8ed 100644 --- a/.github/workflows/sign-images.yml +++ b/.github/workflows/sign-images.yml @@ -79,7 +79,7 @@ jobs: publish_to_registry: "false" - name: Login to CI registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }}