From 5f9cc1bc47ced7e0047ec5799d5ee8f638bd2714 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 22:56:46 +0000 Subject: [PATCH 1/2] chore(deps): bump docker/build-push-action from 5 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/action-docker-build-push.yaml | 4 ++-- .github/workflows/action-node-installer.yaml | 2 +- .github/workflows/release.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/action-docker-build-push.yaml b/.github/workflows/action-docker-build-push.yaml index 8677f9a..7b76ada 100644 --- a/.github/workflows/action-docker-build-push.yaml +++ b/.github/workflows/action-docker-build-push.yaml @@ -48,7 +48,7 @@ jobs: sudo systemctl restart docker - name: Build and load (test run) - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 if: ${{ inputs.test }} with: context: ${{ matrix.image.context }} @@ -56,7 +56,7 @@ jobs: tags: containerd-shim-spin/${{ matrix.image.imageName }}:test platforms: wasi/wasm - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 if: ${{ !inputs.test }} with: push: true diff --git a/.github/workflows/action-node-installer.yaml b/.github/workflows/action-node-installer.yaml index f8cfaf4..28beee6 100644 --- a/.github/workflows/action-node-installer.yaml +++ b/.github/workflows/action-node-installer.yaml @@ -145,7 +145,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push node-installer image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: true tags: | diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a63f82b..e67e618 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -82,7 +82,7 @@ jobs: for f in ./_artifacts/*/*-aarch64.tar.gz; do tar -xf $f --directory ./deployments/k3d/.tmp/linux/arm64; done - name: Build and push k3d shim image - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: push: true tags: | From 001c9fea2b14b108fbbed71bf40a9fac175de04d Mon Sep 17 00:00:00 2001 From: Vaughn Dice Date: Tue, 28 Oct 2025 11:47:39 -0600 Subject: [PATCH 2/2] fix(.github): ignore dockerbuild artifacts with docker/build-push-action v6 bump Signed-off-by: Vaughn Dice --- .github/workflows/action-node-installer.yaml | 2 ++ .github/workflows/action-test.yml | 2 ++ .github/workflows/release.yaml | 1 + 3 files changed, 5 insertions(+) diff --git a/.github/workflows/action-node-installer.yaml b/.github/workflows/action-node-installer.yaml index 28beee6..c0b7aac 100644 --- a/.github/workflows/action-node-installer.yaml +++ b/.github/workflows/action-node-installer.yaml @@ -36,6 +36,7 @@ jobs: - uses: actions/download-artifact@v6 with: path: _artifacts + pattern: "!*.dockerbuild" - name: Set up QEMU uses: docker/setup-qemu-action@v3 @@ -123,6 +124,7 @@ jobs: - uses: actions/download-artifact@v6 with: path: _artifacts + pattern: "!*.dockerbuild" - name: Set up QEMU uses: docker/setup-qemu-action@v3 diff --git a/.github/workflows/action-test.yml b/.github/workflows/action-test.yml index cc8110a..9852ef0 100644 --- a/.github/workflows/action-test.yml +++ b/.github/workflows/action-test.yml @@ -11,6 +11,8 @@ jobs: steps: - uses: actions/checkout@v5 - uses: actions/download-artifact@v6 + with: + pattern: "!*.dockerbuild" - uses: azure/setup-kubectl@v4 - uses: fermyon/actions/spin/setup@v1 with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index e67e618..5d2fbed 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -40,6 +40,7 @@ jobs: - uses: actions/download-artifact@v6 with: path: _artifacts + pattern: "!*.dockerbuild" - name: Copy release workload assets into _dist if: startsWith(github.ref, 'refs/tags/v')