chore(deps): bump golang.org/x/net from 0.33.0 to 0.55.0 #580
Workflow file for this run
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: golangci-lint | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'README.md' | |
| - '*_test.go' | |
| jobs: | |
| golangci: | |
| strategy: | |
| matrix: | |
| go-version: [1.25.x] | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| name: lint | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Check for Cgo dependencies | |
| shell: bash | |
| run: | | |
| echo "Searching for packages that require Cgo..." | |
| CGO_PACKAGES=$(go list -f '{{if .CgoFiles}}{{.ImportPath}}{{end}}' -tags cgo ./...) | |
| if [ -n "$CGO_PACKAGES" ]; then | |
| echo "::error::Found packages that require Cgo, which is not allowed." | |
| echo "This will result in a dynamically linked binary." | |
| echo "The following packages must be removed or refactored:" | |
| echo "$CGO_PACKAGES" | |
| # Exit with a non-zero status to fail the workflow | |
| exit 1 | |
| else | |
| echo "Success: No Cgo dependencies found." | |
| fi | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v8 | |
| with: | |
| version: v2.12.2 | |
| args: --timeout=5m | |
| only-new-issues: true | |