Skip to content

Commit 8068425

Browse files
committed
ci: bump golangci-lint to v2.11.3 and disable lint cache
1 parent 50d4e9a commit 8068425

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
- name: Lint
2929
uses: golangci/golangci-lint-action@v9
3030
with:
31-
version: v2.10.1
31+
version: v2.11.3
3232
args: --timeout 10m
33-
skip-cache: false
33+
skip-cache: true
3434
- name: Vet
3535
run: make vet
3636
- name: Whitespace check

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Beekeeper consumes Bee as a library (`github.com/ethersphere/bee/v2` in `go.mod`
1717
```bash
1818
make binary # build ./dist/beekeeper (CGO disabled, version stamped via -ldflags)
1919
make test # unit tests: go test -v ./pkg/...
20-
make lint # golangci-lint (pinned v2.10.1; auto-installs if missing)
20+
make lint # golangci-lint (pinned v2.11.3; auto-installs if missing)
2121
```
2222

2323
Run a single test: `go test -run TestName ./pkg/<package>/...` (add `-race` to mirror CI).

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GO ?= go
22
GOLANGCI_LINT ?= golangci-lint
3-
GOLANGCI_LINT_VERSION ?= v2.10.1
3+
GOLANGCI_LINT_VERSION ?= v2.11.3
44
COMMIT ?= "$(shell git describe --long --dirty --always --match "" || true)"
55
VERSION ?= "$(shell git describe --tags --abbrev=0 | cut -c2-)"
66
LDFLAGS ?= -s -w \

0 commit comments

Comments
 (0)