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