Update aws-sdk-go-v2 monorepo #13436
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: | |
| push: | |
| tags: | |
| - v* | |
| pull_request: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| golangci-lint: | |
| name: golangci-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| # NOTE: Version and args must match scripts/lint.sh | |
| version: v2.11.4 | |
| args: --enable bodyclose,copyloopvar,misspell --timeout 10m | |
| man-page-staleness: | |
| name: man-page-staleness | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| - name: Regenerate man page | |
| run: make man | |
| - name: Check for staleness | |
| run: | | |
| if ! git diff --exit-code docs/man/trufflehog.1; then | |
| echo "::error::docs/man/trufflehog.1 is stale. Run 'make man' and commit the result." | |
| exit 1 | |
| fi | |
| semgrep: | |
| name: semgrep | |
| runs-on: ubuntu-latest | |
| container: | |
| image: returntocorp/semgrep | |
| if: (github.actor != 'dependabot[bot]') | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: semgrep --config=hack/semgrep-rules/detectors.yaml pkg/detectors/ | |
| checksecretparts: | |
| # Reports detector packages that construct detectors.Result without | |
| # populating SecretParts. See hack/checksecretparts/README.md. | |
| name: checksecretparts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.25" | |
| - name: Run checksecretparts | |
| run: go run ./hack/checksecretparts -fail ./pkg/detectors |