develop(actions): Configured Actions to use shared workflows from 'hms-dbmi/actions' #214
Workflow file for this run
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: Scan | ||
on: | ||
push: | ||
branches: [ master, development ] | ||
pull_request: | ||
branches: [ master, development ] | ||
schedule: | ||
- cron: '0 12 * * 1' # runs at 12:00 UTC on Mondays | ||
workflow_dispatch: | ||
jobs: | ||
scan: | ||
uses: hms-dbmi/actions/.github/workflows/scan.yml@main | ||
Check failure on line 14 in .github/workflows/scan.yml GitHub Actions / .github/workflows/scan.ymlInvalid workflow file
|
||
secrets: | ||
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }} | ||
DOCKER_HUB_PASSWORD: ${{ secrets.DOCKER_HUB_PASSWORD }} | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
with: | ||
repository: ${{ github.repository }} | ||
commit: ${{ github.sha }} |