diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index d7397a4..ca30504 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -169,7 +169,7 @@ jobs: steps: - name: Login to GitHub Container Registry if: github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} @@ -177,14 +177,14 @@ jobs: - name: Login to Docker.io Container Registry if: github.event_name != 'pull_request' && env.DOCKER_USER != '' && env.DOCKER_TOKEN != '' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} - name: Login to Quay.io Container Registry if: github.event_name != 'pull_request' && env.QUAY_USER != '' && env.QUAY_TOKEN != '' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: quay.io username: ${{ secrets.QUAY_USER }} @@ -261,7 +261,7 @@ jobs: steps: - name: Login to GitHub Container Registry if: github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} @@ -269,14 +269,14 @@ jobs: - name: Login to Docker.io Container Registry if: github.event_name != 'pull_request' && env.DOCKER_USER != '' && env.DOCKER_TOKEN != '' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} - name: Login to Quay.io Container Registry if: github.event_name != 'pull_request' && env.QUAY_USER != '' && env.QUAY_TOKEN != '' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: quay.io username: ${{ secrets.QUAY_USER }} @@ -428,7 +428,7 @@ jobs: - name: Login to GitHub Container Registry if: github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} @@ -436,14 +436,14 @@ jobs: - name: Login to Docker.io Container Registry if: github.event_name != 'pull_request' && env.DOCKER_USER != '' && env.DOCKER_TOKEN != '' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: ${{ secrets.DOCKER_USER }} password: ${{ secrets.DOCKER_TOKEN }} - name: Login to Quay.io Container Registry if: github.event_name != 'pull_request' && env.QUAY_USER != '' && env.QUAY_TOKEN != '' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: quay.io username: ${{ secrets.QUAY_USER }}