build(deps-dev): bump axios from 1.7.2 to 1.7.7 #74
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, push, pull_request] | |
jobs: | |
semgrep: | |
name: Scan | |
runs-on: ubuntu-latest | |
container: | |
image: returntocorp/semgrep | |
# Skip any PR created by dependabot to avoid permission issues | |
if: (github.actor != 'dependabot[bot]') | |
steps: | |
# Fetch project source | |
- uses: actions/checkout@v3 | |
- name: semgrep-run | |
id: semgrep-run | |
continue-on-error: true | |
run: | | |
touch output.log | |
semgrep ci 2>&1 | tee output.log | |
env: | |
# Select rules for your scan with one of these two options. | |
# Option 1: set hard-coded rulesets | |
SEMGREP_RULES: >- # more at semgrep.dev/r | |
p/security-audit | |
p/secrets | |
p/ci | |
p/dockerfile | |
p/javascript | |
p/nodejs | |
- name: upload-logs | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: output.log | |
path: output.log | |
retention-days: 1 |