From 97b211d8e50a8bd4fa76530cf9f6f4bb83a98882 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 14:45:25 +0000 Subject: [PATCH] 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/api.yaml | 6 +++--- .github/workflows/ui.yaml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/api.yaml b/.github/workflows/api.yaml index 9ec9f1ae..d45bd907 100644 --- a/.github/workflows/api.yaml +++ b/.github/workflows/api.yaml @@ -130,7 +130,7 @@ jobs: run: | docker build -t ${{ env.REGISTRY }}/api:${{ env.BRANCH }} -f docker/app/Dockerfile . - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -151,7 +151,7 @@ jobs: run: | docker build -t ${{ env.REGISTRY }}/data:${{ env.BRANCH }} -f docker/diag-etl/Dockerfile . - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -218,7 +218,7 @@ jobs: - name: Extract branch/tag name run: python3 ./.github/scripts/extract_git_ref.py # Provides env.BRANCH - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/ui.yaml b/.github/workflows/ui.yaml index 5684a79b..30a93448 100644 --- a/.github/workflows/ui.yaml +++ b/.github/workflows/ui.yaml @@ -93,7 +93,7 @@ jobs: run: | docker build -t ${{ env.REGISTRY }}:${{ env.BRANCH }} -f docker/webserver/Dockerfile . - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -136,7 +136,7 @@ jobs: - name: Extract branch/tag name run: python3 ./.github/scripts/extract_git_ref.py # Provides env.BRANCH - name: Login to GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }}