ci: add workflow #57
Workflow file for this run
This file contains hidden or 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: Example Workflow Using SecureStack Actions | |
| on: push | |
| jobs: | |
| security: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo for running secrets analysis within workflow | |
| id: checkout | |
| uses: actions/checkout@v2.4.0 | |
| with: | |
| fetch-depth: 0 | |
| - name: Secrets Analysis Step | |
| id: secrets | |
| uses: SecureStackCo/actions-secrets@v0.1.2 | |
| with: | |
| securestack_api_key: ${{ secrets.SECURESTACK_API_KEY }} | |
| securestack_app_id: ${{ secrets.SECURESTACK_APP_ID }} | |
| severity: critical | |
| flags: '-d 1' |