Skip to content

Commit

Permalink
Merge pull request #61 from veracode/bug/ENGER-821
Browse files Browse the repository at this point in the history
bug/ENGER-821 - Fix issue related to EU validations
  • Loading branch information
veraakarthikbharadwaj authored Aug 19, 2024
2 parents 702a4a8 + 02d1075 commit 44794e2
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
- name: Verify Veracode API credentials
id: verify_api_creds
uses: veracode/[email protected].3
uses: veracode/[email protected].4
with:
action: validateVeracodeApiCreds
token: ${{ github.event.client_payload.token }}
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Verify Policy name
id: verify_policy_name
if: success()
uses: veracode/[email protected].3
uses: veracode/[email protected].4
with:
action: validatePolicyName
token: ${{ github.event.client_payload.token }}
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
- name: Veracode Pipeline Results
if: always()
id: prepare-results
uses: Veracode/[email protected].3
uses: Veracode/[email protected].4
with:
action: 'preparePipelineResults'
token: ${{ github.event.client_payload.token }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/binary-ready-veracode-sast-policy-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
- name: Verify Veracode API credentials
id: verify_api_creds
uses: veracode/[email protected].3
uses: veracode/[email protected].4
with:
action: validateVeracodeApiCreds
token: ${{ github.event.client_payload.token }}
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Verify Policy name
id: verify_policy_name
if: success()
uses: veracode/[email protected].3
uses: veracode/[email protected].4
with:
action: validatePolicyName
token: ${{ github.event.client_payload.token }}
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
run-id: ${{ github.event.client_payload.run_id }}

- name: Veracode Upload and Scan Action Step
uses: veracode/[email protected].5
uses: veracode/[email protected].6
id: upload_and_scan
with:
vid: '${{ secrets.VERACODE_API_ID }}'
Expand All @@ -88,7 +88,7 @@ jobs:
- name: Veracode Policy Results
id: prepare-results
if: always()
uses: Veracode/[email protected].3
uses: Veracode/[email protected].4
with:
action: 'preparePolicyResults'
token: ${{ github.event.client_payload.token }}
Expand All @@ -107,7 +107,7 @@ jobs:
if: ${{ github.event.client_payload.user_config.sandbox_scan.execute_remove_sandbox_action && always() }}
name: Remove Sandbox
steps:
- uses: veracode/[email protected].3
- uses: veracode/[email protected].4
with:
action: 'removeSandbox'
vid: ${{ secrets.VERACODE_API_ID }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Veracode Upload and Scan Action Step
id: upload_and_scan
uses: veracode/[email protected].5
uses: veracode/[email protected].6
with:
appname: ${{ github.event.client_payload.user_config.profile_name }}
createprofile: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/template-register.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: Register build
id: register-build
uses: veracode/[email protected].3
uses: veracode/[email protected].4
with:
action: registerBuild
token: ${{ github.event.client_payload.token }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/veracode-code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
steps:
- name: Verify Veracode API credentials
id: verify_api_creds
uses: veracode/[email protected].3
uses: veracode/[email protected].4
with:
action: validateVeracodeApiCreds
token: ${{ github.event.client_payload.token }}
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Verify Policy name
id: verify_policy_name
if: success()
uses: veracode/[email protected].3
uses: veracode/[email protected].4
with:
action: validatePolicyName
token: ${{ github.event.client_payload.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/veracode-iac-secrets-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
steps:
- name: Verify Veracode API credentials
id: verify_api_creds
uses: veracode/[email protected].3
uses: veracode/[email protected].4
with:
action: validateVeracodeApiCreds
token: ${{ github.event.client_payload.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/veracode-pipeline-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Veracode Pipeline Results
if: always()
id: prepare-results
uses: Veracode/[email protected].3
uses: Veracode/[email protected].4
with:
action: 'preparePipelineResults'
token: ${{ inputs.token }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/veracode-policy-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# run the policy scan action
- name: Veracode Upload and Scan Action Step
uses: veracode/[email protected].5
uses: veracode/[email protected].6
id: upload_and_scan
with:
appname: ${{ inputs.profile_name }}
Expand All @@ -92,7 +92,7 @@ jobs:
- name: Veracode Policy Results
id: prepare-results
if: always()
uses: Veracode/[email protected].3
uses: Veracode/[email protected].4
with:
action: 'preparePolicyResults'
token: ${{ inputs.token }}
Expand All @@ -111,7 +111,7 @@ jobs:
if: ${{ github.event.client_payload.user_config.sandbox_scan.execute_remove_sandbox_action && always() }}
name: Remove Sandbox
steps:
- uses: veracode/[email protected].3
- uses: veracode/[email protected].4
with:
action: 'removeSandbox'
vid: ${{ secrets.VERACODE_API_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/veracode-remove-sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
runs-on: ubuntu-latest
name: Remove Sandbox
steps:
- uses: veracode/[email protected].3
- uses: veracode/[email protected].4
with:
action: 'removeSandbox'
vid: ${{ secrets.VERACODE_API_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/veracode-sandbox-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

# run the policy scan action
- name: Veracode Upload and Scan Action Step
uses: veracode/[email protected].5
uses: veracode/[email protected].6
id: upload_and_scan
with:
appname: ${{ github.event.client_payload.user_config.profile_name }}
Expand Down

0 comments on commit 44794e2

Please sign in to comment.