From 87fe9d80490201f924d2a5ebd6988784ce097f77 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 17:02:22 +0000 Subject: [PATCH] chore(deps): 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_canary.yml | 2 +- .github/workflows/build_release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_canary.yml b/.github/workflows/build_canary.yml index 723a63c4..3384253d 100644 --- a/.github/workflows/build_canary.yml +++ b/.github/workflows/build_canary.yml @@ -16,7 +16,7 @@ jobs: run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: # Username used to log in to a Docker registry. If not set then no login will occur username: ${{ github.repository_owner }} diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 28305019..85ce95fd 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -25,7 +25,7 @@ jobs: VERSION: ${{ steps.get_version.outputs.VERSION }} - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: # Username used to log in to a Docker registry. If not set then no login will occur username: ${{ github.repository_owner }}