Skip to content

Commit

Permalink
Merge pull request #68 from arbourd/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
arbourd committed Sep 7, 2020
2 parents 12c60a0 + d8ea27b commit d5f9dea
Show file tree
Hide file tree
Showing 4 changed files with 356 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: 1.14
go-version: 1.15
- run: go mod download
- run: go test -cpu=1,2 -v ./...

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.14-alpine AS build
FROM golang:1.15-alpine AS build

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

FROM alpine:3.11
FROM alpine:3.12
RUN apk add --no-cache ca-certificates

COPY --from=build /check /opt/resource/check
Expand Down
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ module github.com/arbourd/concourse-slack-alert-resource

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

go 1.14
Loading

0 comments on commit d5f9dea

Please sign in to comment.