diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7140dbf2d..94258089a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -175,7 +175,7 @@ jobs: uses: actions/checkout@v3 - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} @@ -287,7 +287,7 @@ jobs: upload-chunk-size: 1000000 - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} @@ -489,14 +489,14 @@ jobs: # We skip this step if we're not going to push the resulting container image - name: Login to Container Registry if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} @@ -536,14 +536,14 @@ jobs: - name: Login to Container Registry if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} @@ -579,7 +579,7 @@ jobs: - name: Login to Container Registry # TODO only if needs.test-*.results == 'success' if: ${{ needs.info.outputs.push == 'true' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }} diff --git a/.github/workflows/update_latest.yml b/.github/workflows/update_latest.yml index c72b9cf08..54ea65475 100644 --- a/.github/workflows/update_latest.yml +++ b/.github/workflows/update_latest.yml @@ -93,7 +93,7 @@ jobs: needs: [info,update-cdn-latest] steps: - name: Login to Dockerhub - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: scopeci password: ${{ secrets.SCOPECI_TOKEN }}