Skip to content

Commit

Permalink
golang 1.13.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterlong committed Dec 28, 2019
1 parent 749b591 commit 9bed8e3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ os:
- linux

language: go
go: 1.13
go: 1.13.5
go_import_path: github.com/hunterlong/statping

cache:
Expand Down Expand Up @@ -43,10 +43,6 @@ branches:
- master
- dev

before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep

install:
- npm install -g sass
- npm install -g newman
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.13-alpine as base
FROM golang:1.13.5-alpine as base
LABEL maintainer="Hunter Long (https://github.com/hunterlong)"
ARG VERSION
RUN apk add --no-cache libstdc++ gcc g++ make git ca-certificates linux-headers wget curl jq libsass
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ GOCMD=go
GOBUILD=$(GOCMD) build -a
GOTEST=$(GOCMD) test
GOGET=$(GOCMD) get
GOVERSION=1.13.1
GOVERSION=1.13.5
GOINSTALL=$(GOCMD) install
GOPATH:=$(GOPATH)
XGO=$(GOPATH) xgo -go $(GOVERSION) --dest=build
Expand Down
3 changes: 1 addition & 2 deletions dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM golang:1.13-alpine as base
FROM golang:1.13.5-alpine as base
LABEL maintainer="Hunter Long (https://github.com/hunterlong)"
ARG VERSION
ENV DEP_VERSION v0.5.0
RUN apk add --no-cache libstdc++ gcc g++ make git ca-certificates linux-headers wget curl jq
RUN curl -L -s https://assets.statping.com/sass -o /usr/local/bin/sass && \
chmod +x /usr/local/bin/sass
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/hunterlong/statping

go 1.13
go 1.13.5

require (
github.com/99designs/gqlgen v0.10.1
Expand Down

0 comments on commit 9bed8e3

Please sign in to comment.