Skip to content

Bump the kubernetes group across 1 directory with 7 updates #2638

Bump the kubernetes group across 1 directory with 7 updates

Bump the kubernetes group across 1 directory with 7 updates #2638

Workflow file for this run

name: Linters
on:
pull_request:
env:
# Use the Go toolchain installed by setup-go
# https://github.com/actions/setup-go/issues/457
GOTOOLCHAIN: local
jobs:
golangci-lint:
runs-on: ubuntu-24.04
permissions:
contents: read
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with: { go-version: stable }
- uses: golangci/golangci-lint-action@v8
with:
version: latest
args: --timeout=5m
# Count issues reported by disabled linters. The command always
# exits zero to ensure it does not fail the pull request check.
- name: Count non-blocking issues
run: |
golangci-lint run --config .golangci.next.yaml --show-stats >> "${GITHUB_STEP_SUMMARY}" \
--max-issues-per-linter=0 \
--max-same-issues=0 \
--uniq-by-line=0 \
--output.text.path=/dev/null ||: