This repository was archived by the owner on Oct 17, 2025. It is now read-only.
up #178
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: "Audit" | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 0 * * 1" | |
| workflow_dispatch: | |
| jobs: | |
| Audit: | |
| runs-on: "ubuntu-24.04" | |
| env: | |
| SNYK_TOKEN: "${{ secrets.SNYK_TOKEN }}" | |
| steps: | |
| - uses: "actions/checkout@v4" | |
| - uses: "actions/setup-go@v5" | |
| with: | |
| go-version: "1.25.3" | |
| - uses: "actions/setup-python@v5" | |
| with: | |
| python-version: "3.13" | |
| - name: "provision dev tools" | |
| run: "./install go python" | |
| - name: "install snyk" | |
| run: | | |
| sudo curl -Lo /bin/snyk https://downloads.snyk.io/cli/stable/snyk-linux | |
| sudo chmod a+x /bin/snyk | |
| - run: "./build audit" |