From 3aa4ec726f566cfdcdf74e8621311d16d0897555 Mon Sep 17 00:00:00 2001 From: Joey Orlando Date: Fri, 23 Aug 2024 11:49:19 -0400 Subject: [PATCH] update go toolchain version to use the 1.N.P syntax (#4877) # What this PR does Fixes [this CodeQL warning](https://github.com/grafana/oncall/security/code-scanning/tools/CodeQL/status/configurations/automatic/69f48dd4390b44ab31e994b324fcb2b55dc7b51c7542feb4e14e5a6a5b7f869b): Screenshot 2024-08-20 at 15 10 42 [Go docs](https://go.dev/doc/toolchain#version) on 1.N.P syntax versioning ## Checklist - [ ] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] Added the relevant release notes label (see labels prefixed w/ `release:`). These labels dictate how your PR will show up in the autogenerated release notes. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index a905ffd3eb..f059ec7554 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/grafana-labs/grafana-oncall-app -go 1.21 +go 1.21.5 require github.com/grafana/grafana-plugin-sdk-go v0.228.0