Skip to content

Commit 9947567

Browse files
Update pipelinescan.yml
1 parent 7f58fc4 commit 9947567

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pipelinescan.yml

Lines changed: 4 additions & 4 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@v3
29+
- uses: actions/checkout@v5
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@v3
38+
uses: actions/upload-artifact@v4
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@v3
52+
uses: actions/download-artifact@v4
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@v3
64+
- uses: actions/upload-artifact@v4
6565
with:
6666
name: ScanResults
6767
path: /github/home/results.json

0 commit comments

Comments
 (0)