Skip to content

Commit

Permalink
chore(ci): Swap to Go 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
bdwyertech committed Sep 10, 2020
1 parent 86aeb9c commit 6a14b1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
name: Build
strategy:
matrix:
go: [1.13, 1.14]
go: [1.15]
runs-on: ubuntu-latest
container: golang:${{ matrix.go }}
steps:
Expand All @@ -31,7 +31,7 @@ jobs:
go test -v -race $(go list ./... | grep -v /vendor/)
- name: Run GoReleaser
if: startsWith(github.ref, 'refs/tags/') && (matrix.go == 1.14)
if: startsWith(github.ref, 'refs/tags/') && (matrix.go == 1.15)
uses: goreleaser/goreleaser-action@v1
with:
version: latest
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 better-cfn-signal

go 1.14
go 1.15

require (
github.com/aws/aws-sdk-go v1.33.10
Expand Down

0 comments on commit 6a14b1f

Please sign in to comment.