update nakedret #76
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: "Audit" | |
on: # yamllint disable-line rule:truthy | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 0 * * 1" | |
jobs: | |
Audit: | |
runs-on: "ubuntu-24.04" | |
env: | |
GOPATH: "/home/runner/go" | |
steps: | |
- run: "echo \"/usr/local/go/bin\" >> \"$GITHUB_PATH\"" | |
- run: "echo \"${GOPATH}/bin\" >> \"$GITHUB_PATH\"" | |
- uses: "actions/checkout@v4" | |
- run: "sudo apt-get update" | |
- run: "sudo apt-get install -y cargo curl make" | |
- run: "curl -LO https://go.dev/dl/go1.23.2.linux-amd64.tar.gz" | |
- run: "sudo tar -C /usr/local -xzf go1.23.2.linux-amd64.tar.gz" | |
- run: "curl -LO https://downloads.snyk.io/cli/stable/snyk-linux" | |
- run: "sudo cp snyk-linux /bin/snyk" | |
- run: "sudo chmod a+x /bin/snyk" | |
- run: "make -j 4 go" | |
- run: "mage audit" | |
env: | |
SNYK_TOKEN: "${{ secrets.SNYK_TOKEN }}" |