From b2dad5b2470e6dd56858bb560e4ff9c0e88ee449 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 14:51:19 +0000 Subject: [PATCH] Bump docker/login-action in /.github/actions/dbp-charts/verify-compose 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/actions/dbp-charts/verify-compose/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/dbp-charts/verify-compose/action.yml b/.github/actions/dbp-charts/verify-compose/action.yml index db925f955..14b152831 100644 --- a/.github/actions/dbp-charts/verify-compose/action.yml +++ b/.github/actions/dbp-charts/verify-compose/action.yml @@ -27,14 +27,14 @@ runs: fetch-depth: 0 - if: ${{ inputs.quay_username != '' && inputs.quay_password != '' }} name: Login to Quay.io - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: quay.io username: ${{ inputs.quay_username }} password: ${{ inputs.quay_password }} - if: ${{ inputs.docker_username != '' && inputs.docker_password != '' }} name: Login to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ inputs.docker_username }} password: ${{ inputs.docker_password }}