File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
template/.github/{% if ci_cd == 'github_actions' %}workflows{% endif %} Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11
11
contents : write
12
12
steps :
13
13
- name : Checkout Repository
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
with :
16
16
fetch-depth : 0 # Fetch all history for versioning
17
17
Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
steps :
8
8
- run : echo "Triggered by a ${{ github.event_name }} event."
9
- - uses : actions/checkout@v3
9
+ - uses : actions/checkout@v4
10
10
# E.g., to check for my `~/Local/.secret` file
11
11
- name : Custom check for secret files
12
12
run : ./check_for_pattern.sh . "*secret*"
@@ -22,15 +22,15 @@ jobs:
22
22
run : whispers --config test/whisperConfig.yml --severity BLOCKER,CRITICAL . > /tmp/scan_output.json
23
23
# Upload Artifacts
24
24
- name : Upload the scan output
25
- uses : actions/upload-artifact@v3
25
+ uses : actions/upload-artifact@v4
26
26
with :
27
27
name : scan_results
28
28
path : /tmp/scan_output.json
29
29
retention-days : 7
30
30
sast-dependencies :
31
31
runs-on : ubuntu-latest
32
32
steps :
33
- - uses : actions/checkout@v3
33
+ - uses : actions/checkout@v4
34
34
# Node.js dependencies scan
35
35
- name : Setup Node.js
36
36
uses : actions/setup-node@v4
68
68
sast-code :
69
69
runs-on : ubuntu-latest
70
70
steps :
71
- - uses : actions/checkout@v3
71
+ - uses : actions/checkout@v4
72
72
- name : Setup Node.js
73
73
uses : actions/setup-node@v4
74
74
with :
Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
steps :
8
8
- run : echo "Triggered by a ${{ github.event_name }} event."
9
- - uses : actions/checkout@v3
9
+ - uses : actions/checkout@v4
10
10
- uses : actions/setup-python@v4
11
11
with :
12
12
python-version : 3.9
File renamed without changes.
You can’t perform that action at this time.
0 commit comments