chore(deps): bump golang from 2611181 to ac09a5f in the docker gr…
#11019
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" | |
| permissions: | |
| contents: "read" | |
| jobs: | |
| go-license-check: | |
| name: "License Check" | |
| runs-on: "depot-ubuntu-24.04-small" | |
| steps: | |
| - uses: "actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8" # v4.2.2 | |
| - uses: "authzed/actions/setup-go@6cde6aeb82fab36d8383c2f55bed8128955af34d" # main | |
| - name: "Check Licenses" | |
| uses: "authzed/actions/go-license-check@11667c9b2e8b3649ad2af4d788e57d18f8e8eaf1" # main | |
| with: | |
| ignore: "buf.build" # Has no license information | |
| ensure-docs-uptodate: | |
| name: "Ensure Docs are up to date" | |
| runs-on: "depot-ubuntu-24.04-4" | |
| steps: | |
| - uses: "actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8" # v4.2.2 | |
| - uses: "authzed/actions/setup-go@6cde6aeb82fab36d8383c2f55bed8128955af34d" # main | |
| - name: "Generate docs" | |
| run: "go run mage.go gen:docs" | |
| - uses: "chainguard-dev/actions/nodiff@3e8a2a226fad9e1ecbf2d359b8a7697554a4ac6d" # main | |
| with: | |
| path: "" | |
| fixup-command: "mage gen:docs" | |
| lint-everything: | |
| name: "Lint Everything" | |
| runs-on: "depot-ubuntu-24.04-4" | |
| steps: | |
| - uses: "actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8" # v4.2.2 | |
| - uses: "authzed/actions/setup-go@6cde6aeb82fab36d8383c2f55bed8128955af34d" # main | |
| - name: "Lint Everything" | |
| run: "go run mage.go lint:all" | |
| - uses: "chainguard-dev/actions/nodiff@3e8a2a226fad9e1ecbf2d359b8a7697554a4ac6d" # main | |
| with: | |
| path: "" | |
| fixup-command: "go run mage.go lint:all" | |
| conventional-commits: | |
| name: "Lint Commit Messages" | |
| runs-on: "depot-ubuntu-24.04-small" | |
| if: "github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.action == 'reopened' || github.event.action == 'edited')" | |
| steps: | |
| - uses: "actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8" # v4.2.2 | |
| - uses: "webiny/[email protected]" |