refactor: use major version in release upgrade handlers #836
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: | |
workflow_dispatch: {} | |
pull_request: {} | |
push: | |
branches: | |
- develop | |
schedule: | |
# random HH:MM to avoid a load spike on GitHub Actions at 00:00 | |
- cron: '56 22 * * *' | |
jobs: | |
semgrep: | |
name: semgrep/ci | |
runs-on: ubuntu-20.04 | |
env: | |
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} | |
container: | |
image: ghcr.io/zeta-chain/semgrep-semgrep:1.90.0 | |
if: | | |
github.actor != 'dependabot[bot]' && | |
(github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'zeta-chain/node') | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Checkout semgrep-utilities repo | |
uses: actions/checkout@v4 | |
with: | |
repository: zeta-chain/semgrep-utilities | |
path: semgrep-utilities | |
# uses json for semgrep script for transformation in the next step | |
- run: semgrep ci --json --output semgrep-findings.json | |
# transforms the the output from the above into a GHAS compatible SARIF | |
# SARIF output by "semgrep --sarif" doesn't integrate well with GHAS dashboard | |
# Example: the event name uses segmrep rules name/ID, severities are [error, warning, info], tags are a bit confusing) | |
- run: python semgrep-utilities/utilities/github-sarif-helper/src/semgrep-json-to-sarif.py --json semgrep-findings.json --sarif semgrep-github.sarif | |
- name: Upload SARIF file for GitHub Advanced Security Dashboard | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: semgrep-github.sarif |