feat: add support to not scale GitHub runner on default runner labels #5562
Workflow file for this run
This file contains 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: "Semgrep" | |
on: | |
push: | |
branches: ["main"] | |
pull_request_target: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
semgrep: | |
name: Analyze Semgrep | |
runs-on: ubuntu-latest | |
container: returntocorp/semgrep | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Register workspace path | |
if: ${{ github.event.number > 0 }} | |
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
- name: Checkout Pull Request | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
id: checkout | |
if: ${{ github.event.number > 0 }} | |
run: | | |
apk add github-cli | |
gh pr checkout ${{ github.event.number }} | |
- run: semgrep ci --exclude=test --exclude=test --sarif --output=semgrep.sarif | |
env: | |
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} | |
- name: Upload SARIF file for GitHub Advanced Security Dashboard | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: semgrep.sarif | |
if: ${{ github.event.number == '' && !cancelled() }} |