Skip to content

chore(deps): bump next from 13.5.3 to 14.2.3 #54

chore(deps): bump next from 13.5.3 to 14.2.3

chore(deps): bump next from 13.5.3 to 14.2.3 #54

Workflow file for this run

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