[Snyk] Upgrade zone.js from 0.13.0 to 0.14.4 #11
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: Full Build | |
on: | |
workflow_dispatch: | |
# push: | |
# branches: [ "main" ] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
name: Build and analyze | |
# container: oraclelinux:8 | |
runs-on: ubuntu-latest | |
steps: | |
# - name: Install prereqs | |
# run: | | |
# dnf install -y \ | |
# jq \ | |
# git \ | |
# tar \ | |
# libicu \ | |
# curl | |
- name: Set up .Net 8 | |
uses: actions/setup-dotnet@v3.2.0 | |
with: | |
dotnet-version: '8.0.200' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
architecture: 'x64' | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Build | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
shell: bash | |
run: | | |
dotnet msbuild -restore ./InsecureProject.sln | |
dotnet build ./InsecureProject.sln -m:1 | |
- name: Snyk Test | |
uses: snyk/actions/dotnet@master | |
continue-on-error: true | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
command: test | |
args: --sarif-file-output=snyk-test.sarif --all-projects --detection-depth=5 | |
- name: Upload Snyk Test to GitHub Code Scanning | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: snyk-test.sarif | |
- name: Snyk Code Test | |
uses: snyk/actions/dotnet@master | |
continue-on-error: true | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
command: code test | |
args: --sarif-file-output=snyk-code-test.sarif --all-projects --detection-depth=5 | |
- name: Upload Snyk Code Test to GitHub Code Scanning | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: snyk-code-test.sarif | |
permissions: | |
pull-requests: write | |
contents: write | |
security-events: write |