Skip to content

Commit b93d0fe

Browse files
authored
Upgrade to Go 1.13 (#118)
1 parent e1d5978 commit b93d0fe

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@master
2323

24-
- name: Set up Go 1.12
24+
- name: Set up Go 1.13
2525
uses: actions/setup-go@v1
2626
with:
27-
version: 1.12
27+
go-version: '1.13'
2828

2929
- name: Test sqlc
3030
run: go test -v ./...

.github/workflows/equinox.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ jobs:
1212
runs-on: macos-latest
1313
steps:
1414
- uses: actions/checkout@master
15+
- name: Set up Go 1.13
16+
uses: actions/setup-go@v1
17+
with:
18+
go-version: '1.13'
1519
- run: brew install eqnxio/equinox/release-tool
1620
- name: equinox release
1721
env:
@@ -25,6 +29,10 @@ jobs:
2529
needs: [macos]
2630
steps:
2731
- uses: actions/checkout@master
32+
- name: Set up Go 1.13
33+
uses: actions/setup-go@v1
34+
with:
35+
go-version: '1.13'
2836
- run: curl -O https://bin.equinox.io/c/mBWdkfai63v/release-tool-stable-linux-amd64.tgz
2937
- run: tar -xzvf release-tool-stable-linux-amd64.tgz
3038
- name: equinox release

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kyleconroy/sqlc
22

3-
go 1.12
3+
go 1.13
44

55
require (
66
github.com/davecgh/go-spew v1.1.1

0 commit comments

Comments
 (0)