Skip to content

Commit

Permalink
build: update minimum version of Go to 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentbernat committed Dec 12, 2023
1 parent 71b20f3 commit 9c4ce55
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.19', 'stable' ]
go-version: [ '1.20', 'stable' ]
needs:
- dependabot
if: needs.dependabot.outputs.package-ecosystem != 'npm_and_yarn'
Expand Down
4 changes: 2 additions & 2 deletions console/data/docs/01-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ Currently, only a pre-built binary for Linux x86-64 is provided.

## Compilation from source

You need a proper installation of [Go](https://go.dev/doc/install) (1.19+), and
You need a proper installation of [Go](https://go.dev/doc/install) (1.20+), and
[NodeJS](https://nodejs.org/en/download/) (16+) with NPM (6+). For example, on
Debian:

```console
# apt install golang-1.19 nodejs npm
# apt install golang-1.20 nodejs npm
# node --version
v16.15.1
# npm --version
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module akvorado

go 1.19
go 1.20

require (
github.com/ClickHouse/clickhouse-go/v2 v2.16.0
Expand Down

0 comments on commit 9c4ce55

Please sign in to comment.