Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45d9274

Browse files
authored
chore: disable parallelization when running security action (#15666)
- `make -j` appears to be broken for clean builds
1 parent a9195bf commit 45d9274

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/security.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,9 @@ jobs:
130130
# the registry.
131131
export CODER_IMAGE_BUILD_BASE_TAG="$(CODER_IMAGE_BASE=coder-base ./scripts/image_tag.sh --version "$version")"
132132
133-
make -j "$image_job"
133+
# We would like to use make -j here, but it doesn't work with the some recent additions
134+
# to our code generation.
135+
make "$image_job"
134136
echo "image=$(cat "$image_job")" >> $GITHUB_OUTPUT
135137
136138
- name: Run Trivy vulnerability scanner

0 commit comments

Comments
 (0)