Skip to content

Commit

Permalink
bump the versions of various toolchain deps
Browse files Browse the repository at this point in the history
Signed-off-by: Tariq Ibrahim <[email protected]>
  • Loading branch information
tariq1890 committed Dec 31, 2024
1 parent 2a5889f commit fd176e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
go-version: 1.23.x
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Lint
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
go-version: 1.23.x
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Run tests
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
go-version: 1.23.x
- name: Run go checks
run: make go-check
coverage:
Expand All @@ -59,7 +59,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
go-version: 1.23.x
- name: Generate coverage report
run: make cov-report
- name: Upload to Coveralls
Expand Down
4 changes: 1 addition & 3 deletions .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ linters:
- errchkjson
- errname
#- errorlint
- execinquery
- exportloopref
- forbidigo
- forcetypeassert
- funlen
Expand All @@ -60,7 +58,7 @@ linters:
- ineffassign
- interfacebloat
- lll
- logrlint
- loggercheck
- maintidx
- makezero
- misspell
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ TOOLSDIR=$(CURDIR)/bin
GOLANGCILINT ?= $(TOOLSDIR)/golangci-lint
CONTROLLER_GEN ?= $(TOOLSDIR)/controller-gen
GCOV2LCOV ?= $(TOOLSDIR)/gcov2lcov
GOLANGCILINT_VERSION ?= v1.60.3
CONTROLLER_GEN_VERSION ?= v0.16.1
GCOV2LCOV_VERSION ?= v1.0.6
GOLANGCILINT_VERSION ?= v1.62.2
CONTROLLER_GEN_VERSION ?= v0.16.5
GCOV2LCOV_VERSION ?= v1.1.1

# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
Expand Down

0 comments on commit fd176e9

Please sign in to comment.