deps(dependabot): bump github.com/nats-io/nats-server/v2 from 2.10.20 to 2.10.21 #745
Workflow file for this run
This file contains 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: Code Quality | |
on: | |
pull_request: | |
branches: | |
- main | |
- "release-**" | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
- "sec-scanners-config.yaml" | |
- CODEOWNERS | |
- LICENSE | |
- LICENSES | |
- OWNERS | |
- OWNERS_ALIASES | |
- PROJECT | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "docs/**" | |
- "**.md" | |
- "sec-scanners-config.yaml" | |
permissions: | |
contents: read | |
# Optional: allow read access to pull request. Use with `only-new-issues` option. | |
pull-requests: read | |
# Optional: Allow write access to checks to allow the action to annotate code in the PR. | |
checks: write | |
jobs: | |
code-linter: | |
name: "Run golangci-lint" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: golangci-lint | |
env: | |
GOGC: "90" # Garbage collection limit to avoid OOM errors | |
uses: golangci/[email protected] | |
with: | |
version: v1.60.3 |