Merge pull request #488 from docker/dependabot/github_actions/docker/bake-action-7
Some checks failed
validate / prepare (push) Successful in 8s
validate / validate (push) Successful in 24s
test / test (push) Successful in 1m45s
ci / main () (push) Successful in 14s
ci / windows-error (push) Waiting to run
ci / main (cloud:v0.11.2-desktop.2) (push) Failing after 14s
ci / main (lab:latest) (push) Successful in 13s
ci / main (latest) (push) Successful in 14s
ci / main (v0.4.1) (push) Successful in 15s
ci / main (cloud:latest) (push) Successful in 20s
ci / multi (push) Successful in 24s
ci / error (push) Failing after 23s
ci / use (false) (push) Successful in 13s
ci / docker-driver (push) Successful in 9s
ci / use (true) (push) Successful in 16s
ci / driver (image=moby/buildkit:latest) (push) Successful in 16s
ci / driver (image=moby/buildkit:master network=host ) (push) Successful in 25s
ci / endpoint (push) Failing after 14s
ci / buildkitd-config (push) Successful in 22s
ci / buildkitd-config-inline (push) Successful in 23s
ci / with-qemu (v0.9.1, all) (push) Failing after 21s
ci / debug (push) Successful in 41s
ci / with-qemu (, all) (push) Successful in 25s
ci / build-ref (cb185f095fd3d9444e0aa605d3789e9e05f2a1e7) (push) Failing after 14s
ci / with-qemu (, arm64,riscv64,arm) (push) Successful in 26s
ci / with-qemu (v0.9.1, arm64,riscv64,arm) (push) Failing after 19s
ci / build-ref (refs/tags/v0.5.1) (push) Failing after 11s
ci / build-ref (master) (push) Successful in 18s
ci / docker-context (push) Successful in 8s
ci / standalone-cmd (push) Successful in 16s
ci / append (push) Successful in 14s
ci / standalone-action (push) Successful in 18s
ci / platforms (push) Successful in 16s
ci / cleanup (false) (push) Successful in 10s
ci / build-ref (refs/pull/731/head) (push) Failing after 24s
ci / cleanup (true) (push) Successful in 10s
ci / cache-binary (false) (push) Failing after 7s
ci / k3s (latest) (push) Failing after 13s
ci / k3s (v0.11.0) (push) Failing after 10s
ci / cache-binary (true) (push) Failing after 8s
ci / keep-state-error (push) Successful in 8s
ci / k3s (v0.10.5) (push) Failing after 16s
ci / keep-state (push) Successful in 12s

build(deps): bump docker/bake-action from 6 to 7
This commit is contained in:
Tõnis Tiigi
2026-03-09 12:35:58 -07:00
committed by GitHub
3 changed files with 7 additions and 7 deletions

View File

@@ -23,7 +23,7 @@ jobs:
uses: ./
-
name: Test
uses: docker/bake-action@v6
uses: docker/bake-action@v7
with:
targets: test
-

View File

@@ -28,7 +28,7 @@ jobs:
token: ${{ steps.docker-read-app.outputs.token || github.token }}
-
name: Build
uses: docker/bake-action@v6
uses: docker/bake-action@v7
with:
source: .
targets: build

View File

@@ -15,15 +15,15 @@ jobs:
prepare:
runs-on: ubuntu-latest
outputs:
targets: ${{ steps.generate.outputs.targets }}
matrix: ${{ steps.generate.outputs.matrix }}
steps:
-
name: Checkout
uses: actions/checkout@v6
-
name: List targets
name: Generate matrix
id: generate
uses: docker/bake-action/subaction/list-targets@v6
uses: docker/bake-action/subaction/matrix@v7
with:
target: validate
@@ -34,10 +34,10 @@ jobs:
strategy:
fail-fast: false
matrix:
target: ${{ fromJson(needs.prepare.outputs.targets) }}
include: ${{ fromJson(needs.prepare.outputs.matrix) }}
steps:
-
name: Validate
uses: docker/bake-action@v6
uses: docker/bake-action@v7
with:
targets: ${{ matrix.target }}