Skip to content

Commit

Permalink
Merge pull request #282 from instrumenta/golang-1.15
Browse files Browse the repository at this point in the history
chore: bump golang to 1.15
  • Loading branch information
carlossg committed Mar 29, 2021
2 parents fc15a99 + 5da28d9 commit 386640a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
jobs:
build:
docker:
- image: circleci/golang:1.12-node
- image: circleci/golang:1.15-node

steps:
- checkout
Expand Down
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ be useful in getting started.
For building Kubeval you'll need the following:

* Make
* Go 1.12
* Go 1.15

For releasing Kubeval you'll also need:

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12-alpine as builder
FROM golang:1.15-alpine as builder
RUN apk --no-cache add make git
WORKDIR /
COPY . /
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.acceptance
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12-alpine as builder
FROM golang:1.15-alpine as builder
RUN apk --no-cache add make git
WORKDIR /
COPY . /
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.offline
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12-alpine as builder
FROM golang:1.15-alpine as builder
RUN apk --no-cache add make git
WORKDIR /
COPY . /
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/instrumenta/kubeval

go 1.12
go 1.15

require (
github.com/BurntSushi/toml v0.3.1 // indirect
Expand Down

0 comments on commit 386640a

Please sign in to comment.