From 9a95fbe545cec01679864882276c3af51f9a797f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:10:53 +0000 Subject: [PATCH] Bump docker/login-action from 2 to 3 Bumps [docker/login-action](https://github.com/docker/login-action) from 2 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v2...v3) --- updated-dependencies: - dependency-name: docker/login-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 14 +++++++------- .github/workflows/update_latest.yml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aaf871633..80531cac1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -175,7 +175,7 @@ jobs: uses: actions/checkout@v3 - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} @@ -287,7 +287,7 @@ jobs: upload-chunk-size: 1000000 - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} @@ -489,14 +489,14 @@ jobs: # We skip this step if we're not going to push the resulting container image - name: Login to Container Registry if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} @@ -536,14 +536,14 @@ jobs: - name: Login to Container Registry if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} @@ -579,7 +579,7 @@ jobs: - name: Login to Container Registry # TODO only if needs.test-*.results == 'success' if: ${{ needs.info.outputs.push == 'true' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} diff --git a/.github/workflows/update_latest.yml b/.github/workflows/update_latest.yml index 9cab09daf..c40137d74 100644 --- a/.github/workflows/update_latest.yml +++ b/.github/workflows/update_latest.yml @@ -93,7 +93,7 @@ jobs: needs: [info,update-cdn-latest] steps: - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }}