From b555ce4bb90741969aafd3e641a626f3bcaa9935 Mon Sep 17 00:00:00 2001 From: "smartway-bot[bot]" <176469786+smartway-bot[bot]@users.noreply.github.com> Date: Mon, 16 Mar 2026 01:25:20 +0000 Subject: [PATCH] chore(deps): update docker/login-action action to v4 --- .github/workflows/build-image.yml | 2 +- .github/workflows/build-push-image-to-dockerhub.yml | 2 +- .github/workflows/push-image-ghcr-to-ecr.yml | 4 ++-- .github/workflows/structuretest-docker-image.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 2717e21d..1abb43aa 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -172,7 +172,7 @@ jobs: output-credentials: true - name: Login to Github Packages - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ${{ inputs.regitry_url }} username: ${{ github.actor }} diff --git a/.github/workflows/build-push-image-to-dockerhub.yml b/.github/workflows/build-push-image-to-dockerhub.yml index d3d54749..63005af9 100644 --- a/.github/workflows/build-push-image-to-dockerhub.yml +++ b/.github/workflows/build-push-image-to-dockerhub.yml @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v6 - name: Login to DockerHub - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ vars.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} diff --git a/.github/workflows/push-image-ghcr-to-ecr.yml b/.github/workflows/push-image-ghcr-to-ecr.yml index 97ca7ac6..49fd91d6 100644 --- a/.github/workflows/push-image-ghcr-to-ecr.yml +++ b/.github/workflows/push-image-ghcr-to-ecr.yml @@ -58,14 +58,14 @@ jobs: output-credentials: true - name: Login to ECR - uses: docker/login-action@v3 + uses: docker/login-action@v4 env: ECR_DEFAULT_URL: ${{ env.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com with: registry: ${{ inputs.ecr_url || env.ECR_DEFAULT_URL }} - name: Login to Github Packages - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/structuretest-docker-image.yml b/.github/workflows/structuretest-docker-image.yml index 036217d1..f66639ee 100644 --- a/.github/workflows/structuretest-docker-image.yml +++ b/.github/workflows/structuretest-docker-image.yml @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@v6 - name: Login to Github Packages - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }}