Merge pull request #221 from docker/dependabot/github_actions/docker/bake-action-7
Some checks failed
ci / docker-29 (macos-15-intel) (push) Has been cancelled
ci / docker-29 (ubuntu-latest) (push) Has been cancelled
ci / daemon-config (macos-15-intel) (push) Has been cancelled
ci / docker-29 (windows-latest) (push) Has been cancelled
test / test (push) Has been cancelled
ci / daemon-config (ubuntu-24.04-arm) (push) Has been cancelled
validate / prepare (push) Has been cancelled
ci / daemon-config (ubuntu-latest) (push) Has been cancelled
ci / rootless (push) Has been cancelled
ci / main (macos-15-intel, ) (push) Has been cancelled
ci / main (macos-15-intel, type=image,tag=27.3.1) (push) Has been cancelled
ci / main (macos-15-intel, v27.3.1) (push) Has been cancelled
ci / main (ubuntu-24.04-arm, ) (push) Has been cancelled
ci / main (ubuntu-24.04-arm, type=image,tag=27.3.1) (push) Has been cancelled
ci / main (ubuntu-24.04-arm, v27.3.1) (push) Has been cancelled
ci / main (ubuntu-latest, ) (push) Has been cancelled
ci / main (ubuntu-latest, type=image,tag=27.3.1) (push) Has been cancelled
ci / main (ubuntu-latest, v27.3.1) (push) Has been cancelled
ci / main (windows-latest, ) (push) Has been cancelled
ci / main (windows-latest, type=image,tag=27.3.1) (push) Has been cancelled
ci / main (windows-latest, v27.3.1) (push) Has been cancelled
ci / channel (macos-15-intel) (push) Has been cancelled
ci / channel (ubuntu-24.04-arm) (push) Has been cancelled
ci / channel (ubuntu-latest) (push) Has been cancelled
ci / channel (windows-latest) (push) Has been cancelled
ci / daemon-config (windows-latest) (push) Has been cancelled
ci / context (macos-15-intel) (push) Has been cancelled
ci / context (ubuntu-24.04-arm) (push) Has been cancelled
ci / context (ubuntu-latest) (push) Has been cancelled
ci / context (windows-latest) (push) Has been cancelled
ci / lima-start-args (push) Has been cancelled
ci / tcp (macos-15-intel) (push) Has been cancelled
ci / build-linux (containerd-system) (push) Has been cancelled
ci / build-linux (containerd-tarball) (push) Has been cancelled
ci / build-macos (macos-15-intel) (push) Has been cancelled
ci / build-windows (push) Has been cancelled
ci / set-host (push) Has been cancelled
ci / tcp (ubuntu-24.04-arm) (push) Has been cancelled
ci / tcp (ubuntu-latest) (push) Has been cancelled
ci / tcp (windows-latest) (push) Has been cancelled
ci / undock-regctl-version (, ) (push) Has been cancelled
ci / undock-regctl-version (, v0.9.0) (push) Has been cancelled
ci / undock-regctl-version (v0.8.2, ) (push) Has been cancelled
ci / undock-regctl-version (v0.8.2, v0.9.0) (push) Has been cancelled
validate / validate (push) Has been cancelled

build(deps): bump docker/bake-action from 6 to 7
This commit is contained in:
Tõnis Tiigi 2026-03-09 12:36:21 -07:00 committed by GitHub
commit d9a54c7876
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View file

@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v6
-
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 }}