From 4a3a775d2801b5d2ff7a993322f9abc3fd701b35 Mon Sep 17 00:00:00 2001 From: Russell Bunch Date: Sat, 7 Sep 2024 17:32:32 -0500 Subject: [PATCH] Update to go1.22 --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ce2c638..28a34b9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,6 +1,6 @@ name: Lint env: - GO_VERSION: '1.20' + GO_VERSION: '1.22' on: push: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aebc484..ad2fac7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: Test env: - GO_VERSION: '1.20' + GO_VERSION: '1.22' on: push: diff --git a/go.mod b/go.mod index 335aa52..3f821f5 100644 --- a/go.mod +++ b/go.mod @@ -25,7 +25,7 @@ // module github.com/Cray-HPE/gru -go 1.20 +go 1.22 require ( github.com/spf13/cobra v1.8.1