Skip to content

Commit

Permalink
Revert "Switch to go 1.17" (#618)
Browse files Browse the repository at this point in the history
* Revert "Switch to go 1.17"

This reverts commit fe5e5b4. We
switch back to 1.16.5 just for testing. It was known to work with
1.35.0. If it works, we need to try 1.16.10 then.

* Switch to Go 1.16.10

This is the latest release in 1.16.

* Temporarily disable static checks for Windows
  • Loading branch information
vincentbernat committed Nov 29, 2021
1 parent 3ffa7c8 commit cd8823e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: "1.17.3"
go-version: "1.16.10"
- name: Test
run: go test ./...
- name: Run GoReleaser
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: "1.17.3"
go-version: "1.16.10"
- name: Test
run: go test ./...
- name: Run GoReleaser
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/staticcheck.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.17.3
go-version: 1.16.10

- name: Check out code
uses: actions/checkout@v1
Expand All @@ -36,9 +36,3 @@ jobs:

- name: Run staticcheck (darwin/amd64)
run: "GOOS=darwin GOARCH=amd64 staticcheck ./..."

- name: Run staticcheck (windows/amd64)
run: "GOOS=windows GOARCH=amd64 staticcheck ./..."

- name: Run staticcheck (windows/386)
run: "GOOS=windows GOARCH=386 staticcheck ./..."

0 comments on commit cd8823e

Please sign in to comment.