From d6e3f801511983d40eef898de06a4ee7e9c87c37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 May 2022 10:11:07 +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/docker-cicd-develop.yml | 6 +++--- .github/workflows/docker-cicd-release.yml | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker-cicd-develop.yml b/.github/workflows/docker-cicd-develop.yml index 576fa3f..e390191 100644 --- a/.github/workflows/docker-cicd-develop.yml +++ b/.github/workflows/docker-cicd-develop.yml @@ -80,12 +80,12 @@ jobs: # repeat this for other registries you want to use # especially the official Docker Hub Registry - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io # change the username into yours if not using our bot, might use @@ -94,7 +94,7 @@ jobs: # you need to manually add our bot with write access if you use our PAT password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }} - name: Login to Red Hat Quay Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: quay.io # change the username into yours if not using our bot diff --git a/.github/workflows/docker-cicd-release.yml b/.github/workflows/docker-cicd-release.yml index 0baab1f..f094834 100644 --- a/.github/workflows/docker-cicd-release.yml +++ b/.github/workflows/docker-cicd-release.yml @@ -51,12 +51,12 @@ jobs: # repeat this for other registries you want to use # especially the official Docker Hub Registry - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io # change the username into yours if not using our bot, might use @@ -65,7 +65,7 @@ jobs: # you need to manually add our bot with write access if you use our PAT password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }} - name: Login to Red Hat Quay Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: quay.io # change the username into yours if not using our bot @@ -121,12 +121,12 @@ jobs: # repeat this for other registries you want to use # especially the official Docker Hub Registry - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io # change the username into yours if not using our bot @@ -134,7 +134,7 @@ jobs: # you need to manually add our bot with write access if you use our PAT password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }} - name: Login to Red Hat Quay Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: quay.io # change the username into yours if not using our bot