From 61326bbada655215275e327f265f68ddbbd7c616 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 13 Sep 2023 12:17:18 +0200 Subject: [PATCH] ci: bump docker/login-action from 2 to 3 (#6874) 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/ci-main.yml | 4 ++-- .github/workflows/ci-outpost.yml | 2 +- .github/workflows/release-publish.yml | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index f6f0dcfdd..5c00440b3 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -199,7 +199,7 @@ jobs: env: DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} - name: Login to Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: ${{ steps.ev.outputs.shouldBuild == 'true' }} with: registry: ghcr.io @@ -246,7 +246,7 @@ jobs: env: DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} - name: Login to Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: ${{ steps.ev.outputs.shouldBuild == 'true' }} with: registry: ghcr.io diff --git a/.github/workflows/ci-outpost.yml b/.github/workflows/ci-outpost.yml index 1cb8997d6..8cced91f8 100644 --- a/.github/workflows/ci-outpost.yml +++ b/.github/workflows/ci-outpost.yml @@ -77,7 +77,7 @@ jobs: env: DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} - name: Login to Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: ${{ steps.ev.outputs.shouldBuild == 'true' }} with: registry: ghcr.io diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index b69719cb4..a06c3b617 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -17,12 +17,12 @@ jobs: uses: ./.github/actions/docker-push-variables id: ev - name: Docker Login Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -67,12 +67,12 @@ jobs: uses: ./.github/actions/docker-push-variables id: ev - name: Docker Login Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }}