Merge pull request #1816 from rundeck/6.0-SAAS #602
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: Snyk Security Scan | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| snyk_security: | |
| name: Snyk Security Scan | |
| runs-on: ubuntu-latest | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| CLOUDSMITH_NPM_TOKEN: ${{ secrets.CLOUDSMITH_NPM_TOKEN }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Snyk CLI | |
| run: npm install -g snyk@1.1305.1 --userconfig=.npmrc | |
| - name: Verify Snyk installation | |
| run: snyk --version | |
| - name: Authenticate Snyk | |
| run: snyk auth ${{ secrets.SNYK_TOKEN }} | |
| - name: Run Snyk monitor (default branch only) | |
| if: github.event_name == 'push' && github.ref == format('refs/heads/{0}', github.event.repository.default_branch) | |
| run: snyk monitor --all-projects | |
| - name: Test for vulnerabilities | |
| run: snyk test --all-projects --severity-threshold=high |