Detectors Aggregation #366
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: Detectors Aggregation | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 8 * * *" | |
jobs: | |
test-detectors: | |
if: ${{ github.repository == 'trufflesecurity/trufflehog' }} | |
runs-on: ubuntu-latest | |
permissions: | |
actions: "read" | |
contents: "read" | |
id-token: "write" | |
steps: | |
- uses: actions/setup-go@v5 | |
- uses: actions/checkout@v4 | |
- name: Install gotestsum | |
uses: jaxxstorm/[email protected] | |
with: | |
repo: gotestyourself/gotestsum | |
- uses: rwx-research/setup-captain@v1 | |
- name: Test Go | |
run: | | |
export CGO_ENABLED=1 | |
captain run detectors | |
env: | |
RWX_ACCESS_TOKEN: ${{ secrets.RWX_ACCESS_TOKEN }} |