Skip to content

Commit

Permalink
Downgrade to Go 1.16
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Coffman <steve@khanacademy.org>
  • Loading branch information
StevenACoffman committed Dec 13, 2021
1 parent 14cfee7 commit fcddbf2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 25 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
integration:
runs-on: ubuntu-latest
timeout-minutes: 3
container: golang:1.17-alpine
container: golang:1.16-alpine
steps:
- uses: actions/checkout@v1
- run: apk add --no-cache --no-progress nodejs npm git bash
Expand All @@ -15,7 +15,7 @@ jobs:

federation:
runs-on: ubuntu-latest
container: golang:1.17-alpine
container: golang:1.16-alpine
steps:
- uses: actions/checkout@v1
- run: apk add --no-cache --no-progress nodejs npm git bash
Expand All @@ -25,7 +25,7 @@ jobs:

init:
runs-on: ubuntu-latest
container: golang:1.17-alpine
container: golang:1.16-alpine
steps:
- uses: actions/checkout@v1
- run: apk add --no-cache --no-progress alpine-sdk bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with: { go-version: 1.17 }
with: { go-version: 1.16 }
- run: go mod download
- run: .github/workflows/check-fmt
- run: .github/workflows/check-generate
Expand All @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- uses: actions/setup-go@v2
with: { go-version: 1.17 }
with: { go-version: 1.16 }
- run: go mod download
- run: .github/workflows/check-coverage
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -5,7 +5,7 @@ jobs:
test:
strategy:
matrix:
go: [1.16, 1.17]
go: [1.16]
os: [ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
Expand Down
13 changes: 1 addition & 12 deletions example/go.mod
@@ -1,6 +1,6 @@
module github.com/99designs/gqlgen/example

go 1.17
go 1.16

replace github.com/99designs/gqlgen => ../

Expand All @@ -17,23 +17,12 @@ require (
)

require (
github.com/agnivade/levenshtein v1.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/gorilla/mux v1.8.0 // indirect
github.com/hashicorp/golang-lru v0.5.0 // indirect
github.com/logrusorgru/aurora/v3 v3.0.0 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/opentracing/basictracer-go v1.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546 // indirect
golang.org/x/mod v0.5.0 // indirect
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
golang.org/x/tools v0.1.5 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
sourcegraph.com/sourcegraph/appdash-data v0.0.0-20151005221446-73f23eafcf67 // indirect
)
8 changes: 1 addition & 7 deletions go.mod
@@ -1,6 +1,6 @@
module github.com/99designs/gqlgen

go 1.17
go 1.16

require (
github.com/gorilla/websocket v1.4.2
Expand All @@ -21,10 +21,4 @@ require (
require (
github.com/agnivade/levenshtein v1.1.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)

0 comments on commit fcddbf2

Please sign in to comment.