From 607f632515cd648eb112cef10894c66f402e5fa2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 May 2022 09:53:49 +0200 Subject: [PATCH] build(deps): bump docker/login-action from 1 to 2 (#2812) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci-main.yml | 2 +- .github/workflows/ci-outpost.yml | 2 +- .github/workflows/release-publish.yml | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index 6a1e0b0ea..a0a8cadb6 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -216,7 +216,7 @@ jobs: DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} uses: ./.github/actions/docker-setup - name: Login to Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 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 762981abd..7324c536b 100644 --- a/.github/workflows/ci-outpost.yml +++ b/.github/workflows/ci-outpost.yml @@ -72,7 +72,7 @@ jobs: env: DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} - name: Login to Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 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 78fdd5e9f..7289db645 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -15,12 +15,12 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Docker Login Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -54,12 +54,12 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Docker Login Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io username: ${{ github.repository_owner }}