Skip to content

Commit fc72fb5

Browse files
committed
ci: update bake-action to v6
1 parent df0cb2a commit fc72fb5

File tree

3 files changed

+19
-10
lines changed

3 files changed

+19
-10
lines changed

.github/workflows/test.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ jobs:
2626
uses: actions/checkout@v4
2727
-
2828
name: Test
29-
uses: docker/bake-action@v5
29+
uses: docker/bake-action@v6
3030
with:
31+
source: .
3132
targets: test
3233
-
3334
name: Upload coverage

.github/workflows/validate.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,24 @@ on:
1414
- 'master'
1515
- 'releases/v*'
1616
pull_request:
17+
paths-ignore:
18+
- '.github/xgo-releases.json'
1719

1820
jobs:
1921
prepare:
2022
runs-on: ubuntu-latest
2123
outputs:
22-
targets: ${{ steps.targets.outputs.matrix }}
24+
targets: ${{ steps.generate.outputs.targets }}
2325
steps:
2426
-
2527
name: Checkout
2628
uses: actions/checkout@v4
2729
-
28-
name: Targets matrix
29-
id: targets
30-
run: |
31-
echo "matrix=$(docker buildx bake validate --print | jq -cr '.group.validate.targets')" >> $GITHUB_OUTPUT
30+
name: List targets
31+
id: generate
32+
uses: docker/bake-action/subaction/list-targets@v6
33+
with:
34+
target: validate
3235

3336
validate:
3437
runs-on: ubuntu-latest
@@ -39,11 +42,8 @@ jobs:
3942
matrix:
4043
target: ${{ fromJson(needs.prepare.outputs.targets) }}
4144
steps:
42-
-
43-
name: Checkout
44-
uses: actions/checkout@v4
4545
-
4646
name: Validate
47-
uses: docker/bake-action@v5
47+
uses: docker/bake-action@v6
4848
with:
4949
targets: ${{ matrix.target }}

docker-bake.hcl

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
target "_common" {
2+
args = {
3+
BUILDKIT_CONTEXT_KEEP_GIT_DIR = 1
4+
}
5+
}
6+
17
group "default" {
28
targets = ["build"]
39
}
@@ -17,6 +23,7 @@ target "build" {
1723
}
1824

1925
target "build-validate" {
26+
inherits = ["_common"]
2027
dockerfile = "dev.Dockerfile"
2128
target = "build-validate"
2229
output = ["type=cacheonly"]
@@ -41,6 +48,7 @@ target "vendor-update" {
4148
}
4249

4350
target "vendor-validate" {
51+
inherits = ["_common"]
4452
dockerfile = "dev.Dockerfile"
4553
target = "vendor-validate"
4654
output = ["type=cacheonly"]

0 commit comments

Comments
 (0)