From 4ab3bf98138671c416fdcca4b6bcbde67b1cd34c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 17:02:58 +0000 Subject: [PATCH] build(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/on-main-push.yaml | 4 ++-- .github/workflows/on-tag.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/on-main-push.yaml b/.github/workflows/on-main-push.yaml index 65d9662..23fd2ff 100644 --- a/.github/workflows/on-main-push.yaml +++ b/.github/workflows/on-main-push.yaml @@ -24,13 +24,13 @@ jobs: go-version: "${{ steps.awk_gomod.outputs.version }}" - name: Login to DockerHub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME_WEAVEWORKSKUREDCI }} password: ${{ secrets.DOCKERHUB_TOKEN_WEAVEWORKSKUREDCI }} - name: Login to ghcr.io - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: weave-ghcr-bot diff --git a/.github/workflows/on-tag.yaml b/.github/workflows/on-tag.yaml index 8422db1..db0d021 100644 --- a/.github/workflows/on-tag.yaml +++ b/.github/workflows/on-tag.yaml @@ -32,13 +32,13 @@ jobs: image-name: docker.io/${{ github.repository_owner }}/kured:${{ steps.tags.outputs.version }} - name: Login to DockerHub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME_WEAVEWORKSKUREDCI }} password: ${{ secrets.DOCKERHUB_TOKEN_WEAVEWORKSKUREDCI }} - name: Login to ghcr.io - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: weave-ghcr-bot