build(deps): bump actions/checkout from 6.0.1 to 6.0.2 #218
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: "Lint" | |
| on: # yamllint disable-line rule:truthy | |
| push: | |
| branches: | |
| - "!dependabot/*" | |
| - "main" | |
| pull_request: | |
| branches: ["*"] | |
| merge_group: | |
| types: | |
| - "checks_requested" | |
| jobs: | |
| go-lint: | |
| name: "Lint Go" | |
| runs-on: "depot-ubuntu-24.04" | |
| steps: | |
| - uses: "actions/[email protected]" | |
| - uses: "authzed/actions/setup-go@main" | |
| - name: "Lint Go" | |
| run: "go run mage.go lint:go" | |
| - uses: "chainguard-dev/actions/nodiff@main" | |
| with: | |
| path: "" | |
| fixup-command: "go run mage.go lint:go" |