Skip to content

Commit ede51c9

Browse files
committed
update workflows to new github version due to deprecation
1 parent 2cb3d86 commit ede51c9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: write
1212
steps:
1313
- name: Checkout Repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0 # Fetch all history for versioning
1717

.github/workflows/security.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- run: echo "Triggered by a ${{ github.event_name }} event."
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
# E.g., to check for my `~/Local/.secret` file
1111
- name: Custom check for secret files
1212
run: ./check_for_pattern.sh . "*secret*"
@@ -22,15 +22,15 @@ jobs:
2222
run: whispers --config test/whisperConfig.yml --severity BLOCKER,CRITICAL . > /tmp/scan_output.json
2323
# Upload Artifacts
2424
- name: Upload the scan output
25-
uses: actions/upload-artifact@v3
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: scan_results
2828
path: /tmp/scan_output.json
2929
retention-days: 7
3030
sast-dependencies:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
# Node.js dependencies scan
3535
- name: Setup Node.js
3636
uses: actions/setup-node@v4
@@ -68,7 +68,7 @@ jobs:
6868
sast-code:
6969
runs-on: ubuntu-latest
7070
steps:
71-
- uses: actions/checkout@v3
71+
- uses: actions/checkout@v4
7272
- name: Setup Node.js
7373
uses: actions/setup-node@v4
7474
with:

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- run: echo "Triggered by a ${{ github.event_name }} event."
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- uses: actions/setup-python@v4
1111
with:
1212
python-version: 3.9

0 commit comments

Comments
 (0)