Skip to content

Commit

Permalink
Add Go 1.21, 1.22 support to CI (#47)
Browse files Browse the repository at this point in the history
Updates golangci-lint from v1.50.0 to v1.56.x for Go 1.22 support.

Signed-off-by: Austin Vazquez <[email protected]>
  • Loading branch information
austinvazquez authored Mar 21, 2024
1 parent b8b3aa5 commit bcfa26c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
go: ['1.17', '1.18', '1.19']
go: ['1.21', '1.22']
# Build all variants regardless of failures
fail-fast: false
name: Go ${{ matrix.go }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.18
go-version: 1.21

- name: Get dependencies
run: make deps
Expand All @@ -41,4 +41,4 @@ jobs:
bin/tc-redirect-tap-amd64.sha256
bin/tc-redirect-tap-arm64.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ GOMOD := $(shell go env GOMOD)
GOSUM := $(GOMOD:.mod=.sum)
GOBIN := $(abspath ./bin)

GOLANGCI_LINT_VERSION?=v1.53.3
GOLANGCI_LINT_VERSION?=v1.56.2

# Set this to override the directory in which the tc-redirect-tap plugin is
# installed by the "install" target
Expand Down

0 comments on commit bcfa26c

Please sign in to comment.