File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
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
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
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
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
You can’t perform that action at this time.
0 commit comments