diff --git a/.github/workflows/docker-cicd-develop.yml b/.github/workflows/docker-cicd-develop.yml index 576fa3f..e390191 100644 --- a/.github/workflows/docker-cicd-develop.yml +++ b/.github/workflows/docker-cicd-develop.yml @@ -80,12 +80,12 @@ jobs: # repeat this for other registries you want to use # especially the official Docker Hub Registry - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io # change the username into yours if not using our bot, might use @@ -94,7 +94,7 @@ jobs: # you need to manually add our bot with write access if you use our PAT password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }} - name: Login to Red Hat Quay Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: quay.io # change the username into yours if not using our bot diff --git a/.github/workflows/docker-cicd-release.yml b/.github/workflows/docker-cicd-release.yml index 0baab1f..f094834 100644 --- a/.github/workflows/docker-cicd-release.yml +++ b/.github/workflows/docker-cicd-release.yml @@ -51,12 +51,12 @@ jobs: # repeat this for other registries you want to use # especially the official Docker Hub Registry - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io # change the username into yours if not using our bot, might use @@ -65,7 +65,7 @@ jobs: # you need to manually add our bot with write access if you use our PAT password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }} - name: Login to Red Hat Quay Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: quay.io # change the username into yours if not using our bot @@ -121,12 +121,12 @@ jobs: # repeat this for other registries you want to use # especially the official Docker Hub Registry - name: Login to Docker Hub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Login to GitHub Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: ghcr.io # change the username into yours if not using our bot @@ -134,7 +134,7 @@ jobs: # you need to manually add our bot with write access if you use our PAT password: ${{ secrets.GH_SERVICE_ACCOUNT_API_KEY }} - name: Login to Red Hat Quay Container Registry - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: registry: quay.io # change the username into yours if not using our bot