Skip to content

Commit

Permalink
chore(deps): bump golangci-lint from v1.53.3 to v1.54.1 (#7837)
Browse files Browse the repository at this point in the history
This brings full go v1.21 support

Signed-off-by: Mike Beaumont <mjboamail@gmail.com>
  • Loading branch information
michaelbeaumont authored and kumahq[bot] committed Sep 25, 2023
1 parent 4de28c4 commit 311ccd1
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Golangci-lint
on:
push:
branches:
- master
- release-*
pull_request:
permissions:
contents: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
cache: false
go-version: 1.21.1
- uses: golangci/golangci-lint-action@v3
with:
args: --fix=false --verbose
version: v1.54.1
4 changes: 4 additions & 0 deletions mk/dependencies/deps.lock
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
<<<<<<< HEAD
50cf4b94403bc1e03c8ca18db970b193881ef991
=======
1391c1094335f56af6eda077419465c90b9078cf
>>>>>>> c0a87e9e1 (chore(deps): bump golangci-lint from v1.53.3 to v1.54.1 (#7837))
9 changes: 9 additions & 0 deletions mk/dev.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,18 @@ endif
CI_TOOLS_BIN_DIR=$(CI_TOOLS_DIR)/bin

# Change here and `make check` ensures these are used for CI
<<<<<<< HEAD
K8S_MIN_VERSION = v1.20.15-k3s1
K8S_MAX_VERSION = v1.26.1-k3s1
GO_VERSION := 1.21.1
=======
# Note: These are _docker image tags_
# If changing min version, update mk/kind.mk as well
K8S_MIN_VERSION = v1.23.17-k3s1
K8S_MAX_VERSION = v1.28.1-k3s1
export GO_VERSION=1.21.1
export GOLANGCI_LINT_VERSION=v1.54.1
>>>>>>> c0a87e9e1 (chore(deps): bump golangci-lint from v1.53.3 to v1.54.1 (#7837))
GOOS := $(shell go env GOOS)
GOARCH := $(shell go env GOARCH)

Expand Down

0 comments on commit 311ccd1

Please sign in to comment.