Skip to content

Commit be6424f

Browse files
fix: bump go version to 1.22 (#421)
1 parent 5f90492 commit be6424f

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/go-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- uses: actions/checkout@v2
1515

1616
- name: Set up Go
17-
uses: actions/setup-go@v2
17+
uses: actions/setup-go@v5
1818
with:
19-
go-version: 1.19
19+
go-version: 1.22
2020

2121
- name: Build
2222
run: go build -v ./...

.github/workflows/golangci-lint.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v3
16+
- uses: actions/setup-go@v5
17+
with:
18+
go-version: '1.22'
1619
- name: golangci-lint
1720
uses: golangci/golangci-lint-action@v3
1821
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Set up Go
2525
uses: actions/setup-go@v2
2626
with:
27-
go-version: 1.19
27+
go-version: 1.22
2828

2929
- name: Install cross-compile package
3030
run: |

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/contentsquare/chproxy
22

3-
go 1.19
3+
go 1.22
44

55
require (
66
github.com/alicebob/miniredis/v2 v2.21.0

0 commit comments

Comments
 (0)