diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 48681d67..1303bd9a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,7 +24,7 @@ jobs: uses: golangci/golangci-lint-action@v1 with: # Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. - version: v1.29 + version: v1.32 args: --timeout 2m - name: Get kubebuilder diff --git a/Dockerfile b/Dockerfile index 454e0188..4d19db31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.14.1 as builder +FROM golang:1.15.3 as builder WORKDIR /workspace # Copy the Go Modules manifests diff --git a/go.mod b/go.mod index a3155d83..28874fb0 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/keikoproj/upgrade-manager -go 1.13 +go 1.15 require ( github.com/aws/aws-sdk-go v1.33.8