Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9195bf commit 45d9274Copy full SHA for 45d9274
.github/workflows/security.yaml
@@ -130,7 +130,9 @@ jobs:
130
# the registry.
131
export CODER_IMAGE_BUILD_BASE_TAG="$(CODER_IMAGE_BASE=coder-base ./scripts/image_tag.sh --version "$version")"
132
133
- make -j "$image_job"
+ # 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"
136
echo "image=$(cat "$image_job")" >> $GITHUB_OUTPUT
137
138
- name: Run Trivy vulnerability scanner
0 commit comments