Bump actions/checkout from 3 to 4 #69
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 of this GitHub Actions workflow. | |
name: Conviso SAST | |
on: | |
# Scan changed files in PRs (diff-aware scanning): | |
pull_request: {} | |
# Scan mainline branches and report all findings: | |
push: | |
branches: ["main"] | |
# Allows you to start manually | |
workflow_dispatch: {} | |
jobs: | |
conviso: | |
# User definable name of this GitHub Actions job. | |
name: Conviso SAST | |
# If you are self-hosting, change the following `runs-on` value: | |
runs-on: ubuntu-latest | |
container: | |
image: convisoappsec/flowcli | |
steps: | |
- uses: actions/checkout@v4 | |
- name: AST | |
run: conviso sast run --no-send-to-flow |