Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ jobs:
- name: Check if go.mod and go.sum are up-to-date
run: go mod tidy -diff
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v9
with:
version: v1.62.0 # Should match .pre-commit-config.yaml
version: v2.6.2 # Should match .pre-commit-config.yaml
args: --timeout=20m
working-directory: runner
- name: Test
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ repos:
args: ['--fix']
- id: ruff-format
- repo: https://github.com/golangci/golangci-lint
rev: v1.62.0 # Should match .github/workflows/build-artifacts.yml
rev: v2.6.2 # Should match .github/workflows/build-artifacts.yml
hooks:
- id: golangci-lint-full
language_version: 1.23.8 # Should match runner/go.mod
entry: bash -c 'cd runner && golangci-lint run'
language_version: 1.25.0 # Should match runner/go.mod
entry: bash -c 'cd runner && golangci-lint run --fix'
stages: [manual]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
Expand Down
Loading