From aaaefed9effbe6308e8a9b458ff328671b8f1ec8 Mon Sep 17 00:00:00 2001 From: Karthik K Date: Wed, 12 Oct 2022 12:30:09 +0530 Subject: [PATCH] Updated the go version to 1.19 from 1.18 --- .github/workflows/actions.yml | 4 ++-- Dockerfile | 2 +- go.mod | 2 +- tests/e2e/go.mod | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 86ed6ee2..bd70ccc6 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -78,10 +78,10 @@ jobs: env: BASE_IMG : ubuntu:latest steps: - - name: Set up Go 1.18+ + - name: Set up Go 1.19+ uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: ^1.19 id: go - name: Checkout the code uses: actions/checkout@v2 diff --git a/Dockerfile b/Dockerfile index 2ba9501a..fc688097 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.18 as builder +FROM golang:1.19 as builder WORKDIR /workspace diff --git a/go.mod b/go.mod index d9aa3a2c..dd8efe5e 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/dell/csm-operator -go 1.18 +go 1.19 require ( github.com/go-yaml/yaml v2.1.0+incompatible diff --git a/tests/e2e/go.mod b/tests/e2e/go.mod index 6be5fe18..b72a49b7 100644 --- a/tests/e2e/go.mod +++ b/tests/e2e/go.mod @@ -1,6 +1,6 @@ module github.com/dell/csm-operator/tests/e2e -go 1.18 +go 1.19 require ( github.com/dell/csm-operator v0.0.0