Skip to content

Commit 651b8c3

Browse files
authored
Merge pull request #19 from veracode/fixTypo
fix a typo
2 parents 17b106f + 3093eb4 commit 651b8c3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The basic yml
122122
# run the pipeline scan action
123123
- name: pipeline-scan action step
124124
id: pipeline-scan
125-
uses: veracode/Veracode-pipeline-scan-action@v1.0.11
125+
uses: veracode/Veracode-pipeline-scan-action@v1.0.12
126126
with:
127127
vid: ${{ secrets.VID }}
128128
vkey: ${{ secrets.VKEY }}
@@ -152,7 +152,7 @@ Rate the findings according to a policy and fail the build
152152
# run the pipeline scan action
153153
- name: pipeline-scan action step
154154
id: pipeline-scan
155-
uses: veracode/Veracode-pipeline-scan-action@v1.0.11
155+
uses: veracode/Veracode-pipeline-scan-action@v1.0.12
156156
with:
157157
vid: ${{ secrets.VID }}
158158
vkey: ${{ secrets.VKEY }}
@@ -184,7 +184,7 @@ Sort out previous findings using a baseline file
184184
# run the pipeline scan action
185185
- name: pipeline-scan action step
186186
id: pipeline-scan
187-
uses: veracode/Veracode-pipeline-scan-action@v1.0.11
187+
uses: veracode/Veracode-pipeline-scan-action@v1.0.12
188188
with:
189189
vid: ${{ secrets.VID }}
190190
vkey: ${{ secrets.VKEY }}
@@ -217,7 +217,7 @@ Sort out previous findings using a baseline file, create a new baseline file and
217217
# run the pipeline scan action
218218
- name: pipeline-scan action step
219219
id: pipeline-scan
220-
uses: veracode/Veracode-pipeline-scan-action@v1.0.11
220+
uses: veracode/Veracode-pipeline-scan-action@v1.0.12
221221
with:
222222
vid: ${{ secrets.VID }}
223223
vkey: ${{ secrets.VKEY }}

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18644,7 +18644,7 @@ function checkParameters(parameters) {
1864418644
}
1864518645
else if (response.data._embedded.policy_versions[0].type == 'CUSTOMER') {
1864618646
core.info('Custom Policy is required');
18647-
core.info('Downloading custom policy file and setting pilicy to ' + parameters.veracode_policy_name);
18647+
core.info('Downloading custom policy file and setting policy to ' + parameters.veracode_policy_name);
1864818648
policyCommand = 'java -jar pipeline-scan.jar -vid ' + parameters.vid + ' -vkey ' + parameters.vkey + ' --request_policy "' + parameters.veracode_policy_name + '"';
1864918649
const policyDownloadOutput = yield (0, pipeline_scan_1.getPolicyFile)(policyCommand, parameters);
1865018650
if (parameters.debug == 1) {

src/check-parameters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export async function checkParameters (parameters:any):Promise<string> {
7676
}
7777
else if ( response.data._embedded.policy_versions[0].type == 'CUSTOMER' ){
7878
core.info('Custom Policy is required')
79-
core.info('Downloading custom policy file and setting pilicy to '+parameters.veracode_policy_name)
79+
core.info('Downloading custom policy file and setting policy to '+parameters.veracode_policy_name)
8080

8181

8282
policyCommand = 'java -jar pipeline-scan.jar -vid '+parameters.vid+' -vkey '+parameters.vkey+' --request_policy "'+parameters.veracode_policy_name+'"'

0 commit comments

Comments
 (0)