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 9f9d289 commit f248842Copy full SHA for f248842
.github/workflows/ci-pr.yml
@@ -105,9 +105,14 @@ jobs:
105
-PspringBootVersion="$BOOT_VERSION" \
106
-PsampleTests \
107
:runAllSampleTests
108
+ scan:
109
+ needs: [prerequisites]
110
+ if: needs.prerequisites.outputs.runjobs
111
+ uses: ./.github/workflows/trivy-scan.yml
112
+
113
done:
114
runs-on: ubuntu-latest
- needs: [ build_and_verify, check_samples ]
115
+ needs: [ build_and_verify, check_samples, scan ]
116
steps:
117
- name: 'Done'
118
shell: bash
.github/workflows/ci.yml
@@ -14,7 +14,7 @@ on:
14
inputs:
15
run-trivy-scan:
16
description: 'Run Trivy scan ?'
17
- default: false
+ default: true
18
required: false
19
type: boolean
20
0 commit comments