chore(deps): bump postman-cli from 1.24.2 to 1.33.0 #43
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: Security Scan | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| schedule: | |
| - cron: '0 0 * * 0' # Weekly on Sunday | |
| jobs: | |
| security: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| if: hashFiles('package.json') != '' | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '18' | |
| - name: Install Node dependencies | |
| if: hashFiles('package.json') != '' | |
| run: npm ci | |
| - name: Run npm audit | |
| if: hashFiles('package.json') != '' | |
| run: npm audit --audit-level=moderate | |
| continue-on-error: true | |
| - name: Setup Python | |
| if: hashFiles('requirements.txt') != '' || hashFiles('pyproject.toml') != '' | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| - name: Run pip-audit | |
| if: hashFiles('requirements.txt') != '' || hashFiles('pyproject.toml') != '' | |
| run: | | |
| pip install pip-audit | |
| pip-audit | |
| continue-on-error: true | |
| - name: Run Snyk Security Scan | |
| uses: snyk/actions/node@master | |
| continue-on-error: true | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| with: | |
| args: --severity-threshold=high |