From f69452992191edbd159028401298a0cd64660292 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Jul 2022 03:05:14 +0000 Subject: [PATCH] chore(deps): bump docker/login-action from 1 to 2 Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 2. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...v2) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a99e017c8678..fd5072d2f310 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -45,18 +45,18 @@ jobs: restore-keys: | ${{ runner.os }}-go- - name: Login to docker.io registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Login to ghcr.io registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ env.GH_USER }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to ECR - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: public.ecr.aws username: ${{ secrets.ECR_ACCESS_KEY_ID }}