build(deps): bump actions/checkout from 4.1.1 to 6.0.2 #75
Workflow file for this run
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: Test Semgrep Rules | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| main: | |
| runs-on: ubuntu-22.04 | |
| # Note: the non-root flavor doesn't work on GHA (e.g., 1.56.0-nonroot). | |
| container: returntocorp/semgrep@sha256:396f4ad7a655289e764ab2f92733e6195c166ff2f042e0d40505a5850432b9ac # 1.63.0 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| # Checks for syntax errors and runs 'p/semgrep-rule-lints'. | |
| - name: Validate Rules | |
| shell: bash | |
| run: | | |
| config_args=() | |
| # As of semgrep 1.58.0, hidden directories are no longer excluded | |
| # when passing "--validate ./" thus we need to manually exclude hidden | |
| # directories. | |
| while IFS= read -r -d '' dir; do | |
| config_args+=( "--config=$dir" ) | |
| done < <(find . -maxdepth 1 -mindepth 1 -type d -not -path '*/\.*' -print0) | |
| semgrep scan --validate "${config_args[@]}" | |
| - name: Test Rules | |
| run: semgrep --test ./ | |
| # This runs the rules from https://github.com/semgrep/semgrep-rules/tree/835867f89e4ba07f8bb4a6a1619507408e63e9b0/yaml/semgrep | |
| # to ensure best practices are followed. The CI will only fail on error. | |
| - name: Run Semgrep Rules Recommendation Checks | |
| run: semgrep --config=r/yaml.semgrep --severity ERROR ./ |