From 0e1118a9723c8fa2fc979c2f6f779a4655cf9d5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 10:55:59 +0100 Subject: [PATCH] Bump docker/login-action from 2 to 3 (#1127) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-test-app.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/rebuild-released-images.yaml | 2 +- .github/workflows/release-post-install-hook.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-test-app.yml b/.github/workflows/build-test-app.yml index 8676a9fb72..1f723cb1a9 100644 --- a/.github/workflows/build-test-app.yml +++ b/.github/workflows/build-test-app.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Login to docker registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: mongodb+mongodb_atlas_kubernetes diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 3f63b1ccf5..3fc0806fa2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,7 +22,7 @@ jobs: uses: ./.github/actions/set-tag - name: Login to docker.io - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.DOCKER_REGISTRY }} username: ${{ secrets.DOCKER_USERNAME }} diff --git a/.github/workflows/rebuild-released-images.yaml b/.github/workflows/rebuild-released-images.yaml index f8d1b072de..4b24741c33 100644 --- a/.github/workflows/rebuild-released-images.yaml +++ b/.github/workflows/rebuild-released-images.yaml @@ -65,7 +65,7 @@ jobs: with: platforms: ${{ fromJSON(needs.read-versions.outputs.matrix).platforms }} - name: Login to docker registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} diff --git a/.github/workflows/release-post-install-hook.yml b/.github/workflows/release-post-install-hook.yml index e6a5d6e8fa..1fcea99e34 100644 --- a/.github/workflows/release-post-install-hook.yml +++ b/.github/workflows/release-post-install-hook.yml @@ -48,7 +48,7 @@ jobs: exit 1 - name: Login to Quay registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.QUAY_RELEASE_REGISTRY }} username: ${{ env.QUAY_ROBOT_NAME }}