chore(deps-dev): bump ts-jest from 29.1.1 to 29.2.5 #68
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: Snyk Security for Composite Fetcher | |
on: push | |
jobs: | |
security: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
# Install pnpm | |
- name: Install pnpm | |
run: npm install -g pnpm | |
# Install dependencies using pnpm | |
- name: Install dependencies | |
run: pnpm install | |
# Setting up Snyk CLI and checking for vulnerabilities | |
- name: Run Snyk to check for vulnerabilities | |
uses: snyk/actions/node@master | |
continue-on-error: true # To ensure SARIF upload gets called even if vulnerabilities are found | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
args: --sarif-file-output=snyk.sarif | |
# Uploading the results to GitHub Code Scanning | |
- name: Upload result to GitHub Code Scanning | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: snyk.sarif |