update price-feeder to v0.2.4 #1514
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 | |
permissions: | |
contents: read | |
on: | |
merge_group: | |
# Scan changed files in PRs, block on new issues only (existing issues ignored) | |
pull_request: {} | |
push: | |
branches: | |
- develop | |
- main | |
- master | |
paths: | |
# existing issues to be ignored unless this file changes | |
- .github/workflows/semgrep.yml | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
# Update from: https://semgrep.dev/docs/semgrep-ci/sample-ci-configs/#github-actions [removing GH Security Dashboard] | |
semgrep: | |
name: Scan Semgrep | |
runs-on: ubuntu-latest | |
container: | |
image: returntocorp/semgrep | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
- name: Permission issue fix | |
# semgrep for some reason sets the working directory to imuachain/imuachain | |
run: git config --global --add safe.directory /__w/imuachain/imuachain | |
- uses: actions/checkout@v4 | |
- name: Get Diff | |
uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/*.go | |
**/*.js | |
**/*.ts | |
**/*.sol | |
go.mod | |
go.sum | |
- uses: actions/checkout@v4 | |
- run: semgrep ci --config=auto | |
env: | |
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }} | |
if: "env.GIT_DIFF_FILTERED != ''" |