chore(deps): update dependency numpy to v2 #412
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
# This workflow requires that you have an existing account with codescan.io | |
# For more information about configuring your workflow, | |
# read our documentation at https://github.com/codescan-io/codescan-scanner-action | |
name: CodeScan | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [ master ] | |
schedule: | |
- cron: '32 22 * * 2' | |
jobs: | |
CodeScan: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Cache files | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.sonar | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Run Analysis | |
uses: codescan-io/codescan-scanner-action@master | |
with: | |
login: ${{ secrets.CODESCAN_AUTH_TOKEN }} | |
organization: ${{ secrets.CODESCAN_ORGANIZATION_KEY }} | |
projectKey: ${{ secrets.CODESCAN_PROJECT_KEY }} | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: codescan.sarif |