mirror of
https://github.com/hashicorp/vault.git
synced 2025-12-18 15:56:29 -05:00
mend: reintroduce mend scanner but request amd64 runners and update pinned actions (#11386) (#11387)
Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
This commit is contained in:
parent
cebee05e90
commit
d5c5a3f1a8
1 changed files with 42 additions and 0 deletions
42
.github/workflows/mend-pr-scan.yml
vendored
Normal file
42
.github/workflows/mend-pr-scan.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
name: Mend PR Security Scan
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, synchronize, reopened]
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.head_ref || github.run_id }}-mend-scan
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
mend-scan:
|
||||
if: ${{ github.repository == 'hashicorp/vault-enterprise' }}
|
||||
runs-on: [self-hosted, ubuntu-latest-x64]
|
||||
permissions:
|
||||
id-token: write
|
||||
contents: read
|
||||
pull-requests: write
|
||||
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
||||
|
||||
- name: Run Mend Security Scan
|
||||
uses: hashicorp/oss-core-library-dashboard-metrics/mend-security/actions/mend-pr-scan@main
|
||||
with:
|
||||
vault-url: ${{ vars.CI_VAULT_URL }}
|
||||
vault-method: ${{ vars.CI_VAULT_METHOD }}
|
||||
vault-path: ${{ vars.CI_VAULT_PATH }}
|
||||
vault-jwt-github-audience: ${{ vars.CI_VAULT_AUD }}
|
||||
generate-scan-report: "true"
|
||||
npm-include-dev-dependencies: "true"
|
||||
scan-timeout-minutes: "30"
|
||||
psirt-id: "PSIRT_PRD0014264"
|
||||
|
||||
- name: Upload Scan Artifacts
|
||||
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
|
||||
if: always()
|
||||
with:
|
||||
name: mend-scan-results-pr-${{ github.event.number }}
|
||||
path: whitesource/**
|
||||
retention-days: 90
|
||||
Loading…
Reference in a new issue