diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index c23cc487..fad3263f 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -210,7 +210,7 @@ jobs: ###################### - name: Login to DockerHub if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }} - uses: docker/login-action@v1.13.0 + uses: docker/login-action@v1.14.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -220,7 +220,7 @@ jobs: #################### - name: Login to GitHub Container Registry if: ${{ github.repository == 'github/super-linter' && github.ref == 'refs/heads/main' }} - uses: docker/login-action@v1.13.0 + uses: docker/login-action@v1.14.0 with: registry: ghcr.io username: ${{ secrets.GCR_USERNAME }} diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 5188d8f1..855d1445 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -73,7 +73,7 @@ jobs: # Login to DockerHub # ###################### - name: Login to DockerHub - uses: docker/login-action@v1.13.0 + uses: docker/login-action@v1.14.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -82,7 +82,7 @@ jobs: # Login to GHCR.io # #################### - name: Login to GitHub Container Registry - uses: docker/login-action@v1.13.0 + uses: docker/login-action@v1.14.0 with: registry: ghcr.io username: ${{ secrets.GCR_USERNAME }}