From 2a61a9d7b0b129dff3d32aa0d2d6c6a91495e299 Mon Sep 17 00:00:00 2001 From: Iain Lane Date: Tue, 9 Apr 2024 17:21:36 +0100 Subject: [PATCH] Build: Use go 1.22 Bump to the latest version. Also fixes the toolchain version to be `x.y.z`, which was preventing CodeQL from working properly. --- go.mod | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 3d5d4a3..ec72892 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,8 @@ module github.com/grafana/wait-for-github -go 1.21 +go 1.22 + +toolchain go1.22.2 require ( github.com/bradleyfalzon/ghinstallation/v2 v2.10.0