From dab8e82404cadf88e0f7fde54bf1c59ef7d3471b Mon Sep 17 00:00:00 2001 From: Tyler Auerbeck Date: Tue, 25 Jul 2023 15:35:54 -0400 Subject: [PATCH] Pin to go 1.20.5 for testing (#37) There is a current bug somewhere in the mix of go 1.20.6 <- Moby -> testcontainers. This is being worked out in https://github.com/testcontainers/testcontainers-go/issues/1359 . Until this is fixed, the workaround seems to be pinning to go 1.20.5 for testing Signed-off-by: Tyler Auerbeck --- .github/workflows/test-go.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-go.yml b/.github/workflows/test-go.yml index d98fa64..17d38c8 100644 --- a/.github/workflows/test-go.yml +++ b/.github/workflows/test-go.yml @@ -45,7 +45,9 @@ jobs: - name: Set up Go for ${{ matrix.ci-database }} uses: actions/setup-go@v4 with: - go-version-file: "go.mod" + #pinning to 1.20.5 until https://github.com/testcontainers/testcontainers-go/issues/1359 is resolved + #go-version-file: "go.mod" + go-version: "1.20.5" - name: Install atlas for db migrations on ${{ matrix.ci-database }} run: go install ariga.io/atlas/cmd/atlas@latest