Skip to content

Commit 87736c6

Browse files
committed
Work around a Go version issue with a dependency
1 parent 35fca28 commit 87736c6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci-go.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ jobs:
4545
working-directory: .
4646
- uses: actions/setup-go@v2
4747
with:
48-
go-version: ${{ steps.go-version.outputs.version }}
48+
go-version: 1.17.x
49+
# NOTE: restore the line below once this repo has moved to go 1.17. We're currently hardcoding 1.17.x
50+
# because the 'corner' provider has moved to that version and we'd still like this test to run.
51+
#
52+
#go-version: ${{ steps.go-version.outputs.version }}
4953
- run: go mod edit -replace=github.com/hashicorp/terraform-plugin-sdk/v2=../
5054
- run: go mod tidy
5155
- run: go test -v ./...

0 commit comments

Comments
 (0)