.github/workflows/snyk.yml #83
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 Open Source Test | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- 'release/**' | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
- cron: '0 0 * * *' # nightly at midnight | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
snyk: | ||
uses: collibra/snyk-templates/.github/workflows/snyk-gradle-jdk21.yml@main | ||
Check failure on line 19 in .github/workflows/snyk.yml GitHub Actions / .github/workflows/snyk.ymlInvalid workflow file
|
||
with: | ||
snyk-org: "KnowledgeGraphEngine" | ||
snyk-working-directory: ${{ inputs.snyk-working-directory }} | ||
snyk-test-additional-params: ${{ inputs.snyk-test-additional-params }} | ||
secrets: inherit |