docs: drop upstream jwx issue/GHSA tracking from the plan #13
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
| on: [push, pull_request] | |
| name: Lint | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| env: | |
| GOTOOLCHAIN: local | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.27' | |
| cache: false | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| # v2.13+ is built with Go 1.27 (v2.12.x was go1.26 and rejects go.mod 1.27.0) | |
| version: v2.13.1 |