Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
Upgrade to Go 1.13 and Alpine 3.10.3 (#34)
Browse files Browse the repository at this point in the history
This change upgrades Go to the latest release 1.13.1 and Alpine to 3.10.3.
Alpine is used to get certificates only so this a low risk upgrade.
  • Loading branch information
Bjørn authored Oct 7, 2019
1 parent 77e20fe commit b3aa77e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go
go:
- "1.12.7"
- "1.13.1"
script:
- go build ./...
- go test ./...
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.7 as builder
FROM golang:1.13.1 as builder
WORKDIR /src
ENV CGO_ENABLED=0
ENV GOOS=linux
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-goreleaser
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.8 as builder
FROM alpine:3.10.3 as builder

RUN apk update
RUN apk add ca-certificates
Expand Down
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
module github.com/lunarway/snyk_exporter

go 1.13

require (
github.com/golang/protobuf v1.3.2 // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
Expand Down

0 comments on commit b3aa77e

Please sign in to comment.