diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 0dd339f6..1e1ef65e 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -27,7 +27,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} images: | @@ -40,15 +40,15 @@ jobs: - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Setup Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Hub login id: login1 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USERNAME }} @@ -56,7 +56,7 @@ jobs: - name: Quay login id: login2 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: quay.io @@ -65,7 +65,7 @@ jobs: - name: Ghcr login id: login3 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: ghcr.io @@ -74,7 +74,7 @@ jobs: - name: Build amd64 id: amd64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: latest/ @@ -90,7 +90,7 @@ jobs: - name: Build arm64 id: arm64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: latest/ @@ -106,7 +106,7 @@ jobs: - name: Build arm id: arm - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: latest/ diff --git a/.github/workflows/edge.yml b/.github/workflows/edge.yml index c41b85c8..25d3770b 100644 --- a/.github/workflows/edge.yml +++ b/.github/workflows/edge.yml @@ -27,7 +27,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} images: | @@ -40,15 +40,15 @@ jobs: - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Setup Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Hub login id: login1 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USERNAME }} @@ -56,7 +56,7 @@ jobs: - name: Quay login id: login2 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: quay.io @@ -65,7 +65,7 @@ jobs: - name: Ghcr login id: login3 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: ghcr.io @@ -74,7 +74,7 @@ jobs: - name: Build amd64 id: amd64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: edge/ @@ -90,7 +90,7 @@ jobs: - name: Build arm64 id: arm64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: edge/ @@ -106,7 +106,7 @@ jobs: - name: Build arm id: arm - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: edge/ diff --git a/.github/workflows/v1.17.yml b/.github/workflows/v1.17.yml index 144904bd..68215e34 100644 --- a/.github/workflows/v1.17.yml +++ b/.github/workflows/v1.17.yml @@ -27,7 +27,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} images: | @@ -40,15 +40,15 @@ jobs: - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Setup Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Hub login id: login1 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USERNAME }} @@ -56,7 +56,7 @@ jobs: - name: Quay login id: login2 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: quay.io @@ -65,7 +65,7 @@ jobs: - name: Ghcr login id: login3 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: ghcr.io @@ -74,7 +74,7 @@ jobs: - name: Build amd64 id: amd64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.17/ @@ -90,7 +90,7 @@ jobs: - name: Build arm64 id: arm64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.17/ @@ -106,7 +106,7 @@ jobs: - name: Build arm id: arm - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.17/ diff --git a/.github/workflows/v1.18.yml b/.github/workflows/v1.18.yml index e5f90987..40280faa 100644 --- a/.github/workflows/v1.18.yml +++ b/.github/workflows/v1.18.yml @@ -27,7 +27,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} images: | @@ -40,15 +40,15 @@ jobs: - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Setup Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Hub login id: login1 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USERNAME }} @@ -56,7 +56,7 @@ jobs: - name: Quay login id: login2 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: quay.io @@ -65,7 +65,7 @@ jobs: - name: Ghcr login id: login3 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: ghcr.io @@ -74,7 +74,7 @@ jobs: - name: Build amd64 id: amd64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.18/ @@ -90,7 +90,7 @@ jobs: - name: Build arm64 id: arm64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.18/ @@ -106,7 +106,7 @@ jobs: - name: Build arm id: arm - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.18/ diff --git a/.github/workflows/v1.19.yml b/.github/workflows/v1.19.yml index 0eea6841..f7716d46 100644 --- a/.github/workflows/v1.19.yml +++ b/.github/workflows/v1.19.yml @@ -27,7 +27,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} images: | @@ -40,15 +40,15 @@ jobs: - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Setup Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Hub login id: login1 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USERNAME }} @@ -56,7 +56,7 @@ jobs: - name: Quay login id: login2 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: quay.io @@ -65,7 +65,7 @@ jobs: - name: Ghcr login id: login3 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: ghcr.io @@ -74,7 +74,7 @@ jobs: - name: Build amd64 id: amd64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.19/ @@ -90,7 +90,7 @@ jobs: - name: Build arm64 id: arm64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.19/ @@ -106,7 +106,7 @@ jobs: - name: Build arm id: arm - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.19/ diff --git a/.github/workflows/v1.20.yml b/.github/workflows/v1.20.yml index d4c5ab76..3219fa52 100644 --- a/.github/workflows/v1.20.yml +++ b/.github/workflows/v1.20.yml @@ -27,7 +27,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} images: | @@ -40,15 +40,15 @@ jobs: - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Setup Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Hub login id: login1 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USERNAME }} @@ -56,7 +56,7 @@ jobs: - name: Quay login id: login2 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: quay.io @@ -65,7 +65,7 @@ jobs: - name: Ghcr login id: login3 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: ghcr.io @@ -74,7 +74,7 @@ jobs: - name: Build amd64 id: amd64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.20/ @@ -90,7 +90,7 @@ jobs: - name: Build arm64 id: arm64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.20/ @@ -106,7 +106,7 @@ jobs: - name: Build arm id: arm - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.20/ diff --git a/.github/workflows/v1.21.yml b/.github/workflows/v1.21.yml index 8ba82cff..e3d0f4a7 100644 --- a/.github/workflows/v1.21.yml +++ b/.github/workflows/v1.21.yml @@ -27,7 +27,7 @@ jobs: - name: Docker meta id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: github-token: ${{ secrets.GITHUB_TOKEN }} images: | @@ -40,15 +40,15 @@ jobs: - name: Setup QEMU id: qemu - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Setup Buildx id: buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Hub login id: login1 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: username: ${{ secrets.DOCKER_USERNAME }} @@ -56,7 +56,7 @@ jobs: - name: Quay login id: login2 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: quay.io @@ -65,7 +65,7 @@ jobs: - name: Ghcr login id: login3 - uses: docker/login-action@v2 + uses: docker/login-action@v3 if: github.event_name != 'pull_request' with: registry: ghcr.io @@ -74,7 +74,7 @@ jobs: - name: Build amd64 id: amd64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.21/ @@ -90,7 +90,7 @@ jobs: - name: Build arm64 id: arm64 - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.21/ @@ -106,7 +106,7 @@ jobs: - name: Build arm id: arm - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: builder: ${{ steps.buildx.outputs.name }} context: v1.21/