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 269d86f commit c2c073cCopy full SHA for c2c073c
.github/workflows/scan.yml
@@ -33,6 +33,8 @@ on:
33
required: false
34
type: string
35
default: "nuget"
36
+ schedule:
37
+ - cron: "0 0 * * 3"
38
jobs:
39
determine-package-type:
40
runs-on: ubuntu-latest
@@ -93,8 +95,8 @@ jobs:
93
95
with:
94
96
command: cves,recommendations
97
image: local://${{ vars.IMAGE }}
- only-severities: ${{ inputs.severities || 'critical,high' }}
- only-package-types: ${{ needs.determine-package-type.outputs.package-types || inputs.package-types }}
98
+ only-severities: ${{ inputs && inputs.severities || 'critical,high' }}
99
+ only-package-types: ${{ (needs.determine-package-type && needs.determine-package-type.outputs.package-types) || (inputs && inputs.package-types) || '' }}
100
only-fixed: true
101
summary: true
102
format: json
0 commit comments