From ff83ff7423f1d13593cac5fba8b0db90ac64e7af Mon Sep 17 00:00:00 2001 From: aphralG <108004222+aphralG@users.noreply.github.com> Date: Wed, 19 Jul 2023 10:48:53 +0100 Subject: [PATCH] fix pipeline (#411) * fix pipeline --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc00c1a079..bdffc08aa4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,8 +105,10 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v3 + # Change made to fix an issue cause by security fix in Go 1.20.6 & 1.19.11 which was causing TestContainers to fail + # https://github.com/testcontainers/testcontainers-go/issues/1359 with: - go-version-file: 'go.mod' + go-version: '1.19.10' - name: Run Integration Tests run: | go install github.com/goreleaser/nfpm/v2/cmd/nfpm@${{ env.NFPM_VERSION }}