Skip to content

Commit

Permalink
update minimium go.mod to 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
rfratto committed Aug 26, 2024
1 parent 7eb0cc2 commit 2d7ad1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.19
- name: Set up Go 1.20
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.20
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b /usr/local/bin v1.50.1
Expand All @@ -26,9 +26,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.19
- name: Set up Go 1.20
uses: actions/setup-go@v5
with:
go-version: 1.19
go-version: 1.20
- name: Test
run: make test
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/grafana/ckit

go 1.19
go 1.20

require (
github.com/cespare/xxhash/v2 v2.3.0
Expand Down

0 comments on commit 2d7ad1c

Please sign in to comment.