Skip to content

Commit 0603802

Browse files
author
Josh Newman
committed
chore(cicd): update go version
1 parent 4be19e2 commit 0603802

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Build
22
on:
33
push:
44
branches:
5-
- 'master'
5+
- "master"
66
pull_request:
77
branches:
8-
- '*'
8+
- "*"
99
jobs:
1010
build:
1111
strategy:
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v2
1818
- uses: actions/setup-go@v2
1919
with:
20-
go-version: '^1.15.0'
20+
go-version: "^1.16.0"
2121
- run: go mod tidy
2222
- name: Build & Test
2323
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-go@v2
1313
with:
14-
go-version: '^1.15.0'
14+
go-version: "^1.16.0"
1515
- name: Release via goreleaser
1616
uses: goreleaser/goreleaser-action@master
1717
with:

0 commit comments

Comments
 (0)