From be69739194452ed3ac4892cec561f42772de970b Mon Sep 17 00:00:00 2001 From: Nic Manoogian Date: Fri, 10 Feb 2023 11:27:32 -0500 Subject: [PATCH] Lock go version to 1.16 1.16 was already specified in the Dockerfile but was inconsistently defined in other areas. --- .github/workflows/release.yml | 2 ++ go.mod | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4d10c0b..6808f4e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,6 +42,8 @@ jobs: run: echo ${{ steps.docker_build.outputs.digest }} - uses: actions/setup-go@v2 + with: + go-version: "1.16" - name: Generate Helm Chart and Recommended YAML run: make dist charts diff --git a/go.mod b/go.mod index ddc5184..c1f07c3 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/DopplerHQ/kubernetes-operator -go 1.15 +go 1.16 require ( github.com/go-logr/logr v0.3.0