From 8399fee20c1b665cba3b4582024d60c9381e3f2f Mon Sep 17 00:00:00 2001 From: chii-bot <109454249+chii-bot[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 08:23:58 +0000 Subject: [PATCH] feat(github-action)!: Update docker/login-action action to v3 | datasource | package | from | to | | ----------- | ------------------- | ---- | -- | | github-tags | docker/login-action | v2 | v3 | --- .github/workflows/ci.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2e70696f..4046f196 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,7 +33,7 @@ jobs: version: latest driver-opts: image=moby/buildkit:master - name: Login to GitHub Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1ecf788d..4d821ae8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -34,7 +34,7 @@ jobs: driver-opts: image=moby/buildkit:master - name: Login to GitHub Container Registry if: github.event_name != 'pull_request' - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }}