Skip to content

chore: bump dependencies #654

chore: bump dependencies

chore: bump dependencies #654

Workflow file for this run

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
uses: golangci/golangci-lint-action@v6.0.1
with:
version: v1.57