From 0048de47a0b602b14ec85ea7c391634db3053e1b Mon Sep 17 00:00:00 2001 From: "David J. M. Karlsen" Date: Wed, 20 Sep 2023 22:26:55 +0200 Subject: [PATCH] Upgrade golang Signed-off-by: David J. M. Karlsen --- .github/workflows/pr.yaml | 2 +- .github/workflows/push.yaml | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index d732bed..f37d26a 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -11,7 +11,7 @@ jobs: name: setup env: BUILD_PLATFORMS: "linux/amd64,linux/arm64,linux/ppc64le,linux/s390x" - GO_VERSION: "~1.18" + GO_VERSION: "~1.21" steps: - name: Setting Workflow Variables id: set-variables diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index e156603..9817760 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -13,7 +13,7 @@ jobs: name: setup env: BUILD_PLATFORMS: "linux/amd64,linux/arm64,linux/ppc64le,linux/s390x" - GO_VERSION: "~1.18" + GO_VERSION: "~1.21" steps: - name: Setting Workflow Variables id: set-variables diff --git a/go.mod b/go.mod index 48a8287..2af0f14 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/redhat-cop/operator-utils -go 1.19 +go 1.21 require ( github.com/BurntSushi/toml v1.2.1