From ed4cdeece71f93695e24436b37e499a0f321d885 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Sep 2023 18:44:32 +0000 Subject: [PATCH] chore(deps): 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/push.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 72fb70b..60b38d2 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -17,20 +17,20 @@ jobs: - uses: actions/checkout@master - name: Log in to the GHCR - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to Docker Hub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOC_USER }} password: ${{ secrets.DOC_PAT }} - name: Log in to the AliyunCS - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: registry.cn-shanghai.aliyuncs.com username: ${{ secrets.ALI_USER }}