Skip to content

Commit d5f9dea

Browse files
authored
Merge pull request #68 from arbourd/update-deps
Update dependencies
2 parents 12c60a0 + d8ea27b commit d5f9dea

File tree

4 files changed

+356
-12
lines changed

4 files changed

+356
-12
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-go@v2
1616
with:
17-
go-version: 1.14
17+
go-version: 1.15
1818
- run: go mod download
1919
- run: go test -cpu=1,2 -v ./...
2020

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.14-alpine AS build
1+
FROM golang:1.15-alpine AS build
22

33
RUN apk --no-cache add --update git
44
RUN mkdir -p /go/src/github.com/arbourd/concourse-slack-alert-resource
@@ -15,7 +15,7 @@ RUN go build -o /check github.com/arbourd/concourse-slack-alert-resource/check
1515
RUN go build -o /in github.com/arbourd/concourse-slack-alert-resource/in
1616
RUN go build -o /out github.com/arbourd/concourse-slack-alert-resource/out
1717

18-
FROM alpine:3.11
18+
FROM alpine:3.12
1919
RUN apk add --no-cache ca-certificates
2020

2121
COPY --from=build /check /opt/resource/check

go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ module github.com/arbourd/concourse-slack-alert-resource
22

33
require (
44
github.com/Masterminds/semver v1.5.0
5-
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
6-
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a // indirect
5+
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
76
)
87

98
go 1.14

0 commit comments

Comments
 (0)