diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a7035e3..36cf123 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -48,7 +48,7 @@ jobs: runs-on: ${{ matrix.platform.runner }} steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: set up docker buildx uses: docker/setup-buildx-action@v3 @@ -108,7 +108,7 @@ jobs: - name: upload ghcr digest if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: digests-${{ matrix.image.name }}-ghcr-${{ matrix.platform.artifact }} path: /tmp/digests/${{ matrix.image.name }}/ghcr/* @@ -116,7 +116,7 @@ jobs: - name: upload dockerhub digest if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: digests-${{ matrix.image.name }}-dockerhub-${{ matrix.platform.artifact }} path: /tmp/digests/${{ matrix.image.name }}/dockerhub/* @@ -131,14 +131,14 @@ jobs: image: [app, buildgo, scratch] steps: - name: download ghcr digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: path: /tmp/digests/ghcr pattern: digests-${{ matrix.image }}-ghcr-* merge-multiple: true - name: download dockerhub digests - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: path: /tmp/digests/dockerhub pattern: digests-${{ matrix.image }}-dockerhub-*