chore(deps): update module golang.org/x/net to v0.53.0 #2267
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: Run Linter | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'docs/**' | |
| - '**/*.adoc' | |
| - '.github/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| golangci: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Display build environment | |
| run: printenv | |
| - uses: actions/setup-go@v6 | |
| name: Set up Go | |
| with: | |
| go-version: "1.25.7" | |
| env: | |
| GO111MODULE: off | |
| - uses: actions/checkout@v6 | |
| name: Checkout ENO | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: v2.8.0 | |
| # Configuration is read from .golangci.yml | |
| only-new-issues: false |