From 2bdd0d166b230f4a525eca9423e48b3395f5c3cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 14:46:28 +0000 Subject: [PATCH] Bump docker/login-action from 1 to 3 Bumps [docker/login-action](https://github.com/docker/login-action) from 1 to 3. - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v1...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/node-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node-build.yml b/.github/workflows/node-build.yml index 73ad24a3..a2696866 100644 --- a/.github/workflows/node-build.yml +++ b/.github/workflows/node-build.yml @@ -45,13 +45,13 @@ jobs: uses: docker/setup-buildx-action@v1 if: ${{ steps.check.outputs.changed == 'true' }} - name: Login to DockerHub - uses: docker/login-action@v1 + uses: docker/login-action@v3 if: ${{ steps.check.outputs.changed == 'true' && github.event_name == 'push' && github.repository == 'odpi/egeria-ui' }} with: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - name: Login to container registry (Quay.io) - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: quay.io username: ${{ secrets.QUAY_IO_USERNAME }}