Skip to content

Commit 444f417

Browse files
Update pipelinescan.yml - bump action versions
1 parent 4a22c24 commit 444f417

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pipelinescan.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# The type of runner that the job will run on
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
3030

3131
# zip the project and move it to a staging directory
3232
- name: Zip Project
@@ -35,7 +35,7 @@ jobs:
3535
build-name: project.zip
3636

3737
- name: Archive package
38-
uses: actions/upload-artifact@v2
38+
uses: actions/upload-artifact@v3
3939
with:
4040
name: CodePackage
4141
path: project.zip
@@ -49,7 +49,7 @@ jobs:
4949

5050
steps:
5151
- name: Retrieve artifact
52-
uses: actions/download-artifact@v2
52+
uses: actions/download-artifact@v3
5353
with:
5454
name: CodePackage
5555
path: /github/home
@@ -61,7 +61,7 @@ jobs:
6161
java -jar /opt/veracode/pipeline-scan.jar --veracode_api_id="${{secrets.VERACODE_API_ID}}" --veracode_api_key="${{secrets.VERACODE_API_KEY}}" --fail_on_severity="Very High, High" --file="project.zip" --app_id="${{secrets.VERACODE_APP_ID}}" --json_output_file="results.json"
6262
continue-on-error: true
6363

64-
- uses: actions/upload-artifact@v2
64+
- uses: actions/upload-artifact@v3
6565
with:
6666
name: ScanResults
6767
path: /github/home/results.json
@@ -73,7 +73,7 @@ jobs:
7373
steps:
7474

7575
- name: Retrieve results
76-
uses: actions/download-artifact@v2
76+
uses: actions/download-artifact@v3
7777
with:
7878
name: ScanResults
7979

0 commit comments

Comments
 (0)