From d3349358ffd7a62cae4ea48bd21e0a21f7878f56 Mon Sep 17 00:00:00 2001 From: Onkar Hanumante Date: Tue, 23 May 2023 21:56:58 +0530 Subject: [PATCH] Use latest version of docker/login-action (#141) --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c7b08b1e..6458272d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -95,7 +95,7 @@ jobs: docker build --build-arg DEPLOY_VERSION=${{ needs.publish-tag.outputs.releaseTag }} -t docker.io/prebid/prebid-cache:${{ needs.publish-tag.outputs.releaseTag }} . - name: Login to docker Hub if: contains(inputs.debug, 'false') - uses: docker/login-action@v1 + uses: docker/login-action@v2.1.0 with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_PASSWORD }}