Skip to content

Commit 1113d6c

Browse files
authored
fix(ci): add cwd prefix to bake-file reference (#511)
The release GitHub action is broken now because of a breaking change in `docker/bake-action` GitHub action after upgrading from v5 to v6. ## Changes - Added `cwd://` prefix to the bake-file reference in the GitHub action. - Added terraform 1.11.4 to build matrix
2 parents bff77c1 + b7fb687 commit 1113d6c

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Dependency
2+
body: Added terraform 1.11.4 to build matrix
3+
time: 2025-05-12T23:06:43.659065+02:00
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: Fixed
2+
body: Added `cwd://` prefix for bake-file reference in release github action
3+
time: 2025-05-12T22:46:49.914831+02:00

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
DEFAULT_TERRAFORM: "1.3.10"
8181
strategy:
8282
matrix:
83-
terraform: [ "0.14.11", "1.1.9", "1.2.9", "1.3.10", "1.4.7", "1.5.7" ]
83+
terraform: [ "0.14.11", "1.1.9", "1.2.9", "1.3.10", "1.4.7", "1.5.7", "1.11.4" ]
8484
cloud: [ "gcp", "aws", "azure", "all" ]
8585

8686
runs-on: ubuntu-latest
@@ -130,7 +130,7 @@ jobs:
130130
with:
131131
files: |
132132
./docker-bake.hcl
133-
${{ steps.meta.outputs.bake-file }}
133+
cwd://${{ steps.meta.outputs.bake-file }}
134134
targets: default-${{ matrix.cloud }}
135135
set: |
136136
base.args.TERRAFORM_VERSION=${{ matrix.terraform }}
@@ -171,7 +171,7 @@ jobs:
171171
with:
172172
files: |
173173
./docker-bake.hcl
174-
${{ steps.meta.outputs.bake-file }}
174+
cwd://${{ steps.meta.outputs.bake-file }}
175175
targets: cli
176176
push: true
177177

0 commit comments

Comments
 (0)