-
Notifications
You must be signed in to change notification settings - Fork 37
62 lines (55 loc) · 1.65 KB
/
scheduled-vuln-check.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Scheduled Vulnerability Check
on:
schedule:
# UTC
- cron: '0 20 * * MON,THU'
env:
TERM: dumb
jobs:
call-vuln-check-for-master:
uses: ./.github/workflows/vuln-check.yaml
with:
target-ref: master
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }}
call-vuln-check-for-v3_10:
uses: ./.github/workflows/vuln-check.yaml
with:
target-ref: v3.10
find-latest-release: true
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }}
call-vuln-check-for-v3_11:
uses: ./.github/workflows/vuln-check.yaml
with:
target-ref: v3.11
find-latest-release: true
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }}
call-vuln-check-for-v3_12:
uses: ./.github/workflows/vuln-check.yaml
with:
target-ref: v3.12
find-latest-release: true
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }}
call-vuln-check-for-v3_13:
uses: ./.github/workflows/vuln-check.yaml
with:
target-ref: v3.13
find-latest-release: true
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }}
call-vuln-check-for-v3_14:
uses: ./.github/workflows/vuln-check.yaml
with:
target-ref: v3.14
find-latest-release: true
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
SLACK_SECURITY_WEBHOOK_URL: ${{ secrets.SLACK_SECURITY_WEBHOOK_URL }}