From 7fbb9b096cce158f5398aaa2147b42edb5d4729f Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Tue, 14 Jan 2025 07:41:40 +1300 Subject: [PATCH 1/2] docs: add toolchain compatibility policy --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5a677e76..782e4d80 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,12 @@ results := scalibr.New().Scan(context.Background(), cfg) log.Info(results) ``` +## Go toolchain compatibility policy + +We aim to keep the osv-scanner library packages compatible with supported +versions of Go (last 2 Go releases), while always building osv-scanner binaries +with the latest version of Go. + ## Contributing Read how to [contribute to SCALIBR](CONTRIBUTING.md). From 4d56f7b7874d9a2b0ed466cb809968c95f610a83 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Tue, 14 Jan 2025 07:44:30 +1300 Subject: [PATCH 2/2] feat: bump to Go v1.23 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 087a43cd..6db25540 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/google/osv-scalibr -go 1.22 +go 1.23 require ( github.com/BurntSushi/toml v1.3.2