You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-8Lines changed: 12 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
> [!WARNING]
2
+
> actions/upload-artifact@v3 and actions/download-artifact@v3 is scheduled for deprecation on **November 30, 2024**. [Learn more.](https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/)
3
+
> We've upgraded the version of @actions/artifact to 2.1.4, which now supports actions/upload-artifact@v4 and actions/download-artifact@v4. Please ensure compatibility by utilizing the v4 versions of actions/upload-artifact and actions/download-artifact.
4
+
1
5
# Veracode Pipeline Scan Action
2
6
3
7
Veracode Pipeline Scan Action runs the Veracode pipeline-scan as an action on any GitHub pipeline
@@ -111,11 +115,11 @@ The basic yml
111
115
112
116
steps:
113
117
- name: checkout repo
114
-
uses: actions/checkout@v3
118
+
uses: actions/checkout@v4
115
119
116
120
# get the compiled binary from a previous job
117
121
- name: get archive
118
-
uses: actions/download-artifact@v3
122
+
uses: actions/download-artifact@v4
119
123
with:
120
124
name: verademo.war
121
125
@@ -141,11 +145,11 @@ Rate the findings according to a policy and fail the build
141
145
142
146
steps:
143
147
- name: checkout repo
144
-
uses: actions/checkout@v3
148
+
uses: actions/checkout@v4
145
149
146
150
# get the compiled binary from a previous job
147
151
- name: get archive
148
-
uses: actions/download-artifact@v3
152
+
uses: actions/download-artifact@v4
149
153
with:
150
154
name: verademo.war
151
155
@@ -173,11 +177,11 @@ Sort out previous findings using a baseline file
173
177
174
178
steps:
175
179
- name: checkout repo
176
-
uses: actions/checkout@v3
180
+
uses: actions/checkout@v4
177
181
178
182
# get the compiled binary from a previous job
179
183
- name: get archive
180
-
uses: actions/download-artifact@v3
184
+
uses: actions/download-artifact@v4
181
185
with:
182
186
name: verademo.war
183
187
@@ -206,11 +210,11 @@ Sort out previous findings using a baseline file, create a new baseline file and
Copy file name to clipboardExpand all lines: action.yml
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -97,11 +97,7 @@ inputs:
97
97
include:
98
98
description: 'Enter a case-sensitive, comma-separated list of name patterns that represent the names of the modules to scan as top-level modules. Veracode identifies these modules during prescan. The * wildcard matches zero or more characters. The ? wildcard matches exactly one character. For example, to include various module names that contain module: --include "module 1, module-*, module2.jar". The scan results show the names of the modules that Veracode identified and the modules included in the scan. This parameter does not pause, stop, or impact the performance of your pipeline.'
99
99
required: false
100
-
use_upgraded_version:
101
-
description: 'Enable it, if artifact version 2 requires usage'
0 commit comments