APPS-1321 Add support for configuring Aerospike cluster password in Secret Agent #885
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 scan | |
on: | |
push: | |
branches: | |
- main | |
- 'v[0-9]+' | |
pull_request: | |
branches: | |
- main | |
- 'v[0-9]+' | |
jobs: | |
snyk-security: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Snyk to check for vulnerabilities | |
uses: snyk/actions/golang@master | |
continue-on-error: true # To make sure that SARIF upload gets called | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
args: --all-projects --sarif-file-output=snyk.sarif | |
- name: Check output file | |
id: out-file | |
run: | | |
if test -f "snyk.sarif"; then | |
echo "::set-output name=exists::true"; else | |
echo "::set-output name=exists::false" | |
fi | |
- name: Upload result to GitHub Code Scanning | |
if: steps.out-file.outputs.exists == 'true' | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: snyk.sarif |