From 79d67c1fef5c77156e1af516a7dd660fc5eedcba Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 13 Sep 2023 11:12:00 +0100 Subject: [PATCH] chore(deps): update docker/login-action action to v3 (#2696) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/container.yml | 4 ++-- .github/workflows/dev-tools.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index e11c097a2..dc3067564 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -61,7 +61,7 @@ jobs: - name: Login ghcr.io if: github.event_name == 'push' - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -69,7 +69,7 @@ jobs: - name: Login docker.io if: github.event_name == 'push' - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: docker.io username: ${{ secrets.DOCKERHUB_USERNAME }} diff --git a/.github/workflows/dev-tools.yml b/.github/workflows/dev-tools.yml index da5974831..68a29b2c5 100644 --- a/.github/workflows/dev-tools.yml +++ b/.github/workflows/dev-tools.yml @@ -33,7 +33,7 @@ jobs: uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 - name: Login to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }}