Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 9b3a6ac

Browse files
committed
Upgrade to golang 1.15 in operator and lurcher
1 parent a3678e9 commit 9b3a6ac

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@master
5858
- uses: actions/setup-go@v2-beta
5959
with:
60-
go-version: "1.13"
60+
go-version: "1.15"
6161
- name: "Lint Operator Go Code"
6262
run: |
6363
cd operator/
@@ -79,7 +79,7 @@ jobs:
7979
- uses: actions/checkout@master
8080
- uses: actions/setup-go@v2-beta
8181
with:
82-
go-version: "1.13"
82+
go-version: "1.15"
8383
- name: "Lint Lurcher Go Code"
8484
run: |
8585
cd lurcher/

lurcher/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.13 as builder
2+
FROM golang:1.15 as builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

lurcher/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/secureCodeBox/secureCodeBox-v2/lurcher
22

3-
go 1.13
3+
go 1.15
44

55
require (
66
k8s.io/apimachinery v0.0.0-20191028221656-72ed19daf4bb

operator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.13 as builder
2+
FROM golang:1.15 as builder
33

44
WORKDIR /workspace
55
# Copy the Go Modules manifests

operator/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/secureCodeBox/secureCodeBox-v2/operator
22

3-
go 1.13
3+
go 1.15
44

55
require (
66
github.com/go-logr/logr v0.1.0

0 commit comments

Comments
 (0)