[Docs] Adding identity-based rate limit #29035
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Security Scan | |
# cancel existing runs of the same workflow on the same ref | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: | |
- 'main' | |
- '!oss-merge-main*' | |
jobs: | |
scan: | |
runs-on: ${{ github.repository == 'hashicorp/vault' && 'ubuntu-latest' || fromJSON('["self-hosted","ondemand","os=linux","type=c6a.4xlarge"]') }} | |
# The first check ensures this doesn't run on community-contributed PRs, who won't have the | |
# permissions to run this job. | |
if: | | |
! github.event.pull_request.head.repo.fork && | |
github.actor != 'dependabot[bot]' && | |
github.actor != 'hc-github-team-secure-vault-core' | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Go | |
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
cache: false # save cache space for vault builds: https://github.com/hashicorp/vault/pull/21764 | |
go-version-file: .go-version | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: 3.x | |
- name: Set up Security Scanner | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
repository: hashicorp/security-scanner | |
token: ${{ secrets.PRODSEC_SCANNER_READ_ONLY }} | |
path: security-scanner | |
ref: main | |
- name: Install Security Scanner Semgrep Plugin Dependency | |
shell: bash | |
run: | | |
python3 -m pip install semgrep==1.45.0 | |
- name: Scan | |
id: scan | |
uses: ./security-scanner | |
with: | |
repository: "$PWD" | |
plugins: "codeql semgrep" | |
- name: Read SARIF | |
shell: bash | |
run: | | |
cat ${{ steps.scan.outputs.sarif-file-path }} | |
- name: Upload SARIF | |
uses: github/codeql-action/upload-sarif@3096afedf9873361b2b2f65e1445b13272c83eb8 # TSCCR: could not find entry for github/codeql-action/upload-sarif | |
with: | |
sarif_file: ${{ steps.scan.outputs.sarif-file-path }} |