mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
Update scan workflow to use centralized reusable component (#15635)
This commit is contained in:
73
.github/workflows/scan.yml
vendored
73
.github/workflows/scan.yml
vendored
@@ -10,79 +10,44 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
types: [opened, synchronize, reopened]
|
types: [opened, synchronize, reopened]
|
||||||
branches-ignore:
|
branches-ignore:
|
||||||
- main
|
- "main"
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
types: [opened, synchronize, reopened]
|
types: [opened, synchronize, reopened]
|
||||||
branches:
|
branches:
|
||||||
- "main"
|
- "main"
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check-run:
|
check-run:
|
||||||
name: Check PR run
|
name: Check PR run
|
||||||
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main
|
uses: bitwarden/gh-actions/.github/workflows/check-run.yml@main
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
sast:
|
sast:
|
||||||
name: SAST scan
|
name: Checkmarx
|
||||||
runs-on: ubuntu-22.04
|
uses: bitwarden/gh-actions/.github/workflows/_checkmarx.yml@main
|
||||||
needs: check-run
|
needs: check-run
|
||||||
|
secrets:
|
||||||
|
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
||||||
|
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
|
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
security-events: write
|
security-events: write
|
||||||
|
id-token: write
|
||||||
steps:
|
|
||||||
- name: Check out repo
|
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
||||||
with:
|
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
|
||||||
|
|
||||||
- name: Scan with Checkmarx
|
|
||||||
uses: checkmarx/ast-github-action@184bf2f64f55d1c93fd6636d539edf274703e434 # 2.0.41
|
|
||||||
env:
|
|
||||||
INCREMENTAL: "${{ contains(github.event_name, 'pull_request') && '--sast-incremental' || '' }}"
|
|
||||||
with:
|
|
||||||
project_name: ${{ github.repository }}
|
|
||||||
cx_tenant: ${{ secrets.CHECKMARX_TENANT }}
|
|
||||||
base_uri: https://ast.checkmarx.net/
|
|
||||||
cx_client_id: ${{ secrets.CHECKMARX_CLIENT_ID }}
|
|
||||||
cx_client_secret: ${{ secrets.CHECKMARX_SECRET }}
|
|
||||||
additional_params: |
|
|
||||||
--report-format sarif \
|
|
||||||
--filter "state=TO_VERIFY;PROPOSED_NOT_EXPLOITABLE;CONFIRMED;URGENT" \
|
|
||||||
--output-path . ${{ env.INCREMENTAL }}
|
|
||||||
|
|
||||||
- name: Upload Checkmarx results to GitHub
|
|
||||||
uses: github/codeql-action/upload-sarif@d68b2d4edb4189fd2a5366ac14e72027bd4b37dd # v3.28.2
|
|
||||||
with:
|
|
||||||
sarif_file: cx_result.sarif
|
|
||||||
sha: ${{ contains(github.event_name, 'pull_request') && github.event.pull_request.head.sha || github.sha }}
|
|
||||||
ref: ${{ contains(github.event_name, 'pull_request') && format('refs/pull/{0}/head', github.event.pull_request.number) || github.ref }}
|
|
||||||
|
|
||||||
quality:
|
quality:
|
||||||
name: Quality scan
|
name: Sonar
|
||||||
runs-on: ubuntu-22.04
|
uses: bitwarden/gh-actions/.github/workflows/_sonar.yml@main
|
||||||
needs: check-run
|
needs: check-run
|
||||||
|
secrets:
|
||||||
|
AZURE_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }}
|
||||||
|
AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }}
|
||||||
|
AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }}
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
|
id-token: write
|
||||||
steps:
|
|
||||||
- name: Check out repo
|
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
|
||||||
|
|
||||||
- name: Scan with SonarCloud
|
|
||||||
uses: sonarsource/sonarqube-scan-action@2500896589ef8f7247069a56136f8dc177c27ccf # v5.2.0
|
|
||||||
env:
|
|
||||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
||||||
with:
|
|
||||||
args: >
|
|
||||||
-Dsonar.organization=${{ github.repository_owner }}
|
|
||||||
-Dsonar.projectKey=${{ github.repository_owner }}_${{ github.event.repository.name }}
|
|
||||||
-Dsonar.tests=.
|
|
||||||
-Dsonar.sources=.
|
|
||||||
-Dsonar.test.inclusions=**/*.spec.ts
|
|
||||||
-Dsonar.exclusions=**/*.spec.ts
|
|
||||||
-Dsonar.pullrequest.key=${{ github.event.pull_request.number }}
|
|
||||||
Reference in New Issue
Block a user