From 53b5cf4109910bd99a23ad598984029c5a4e9884 Mon Sep 17 00:00:00 2001 From: Akhilesh Halageri Date: Wed, 6 Dec 2023 18:24:53 +0000 Subject: [PATCH] fix(gh_action): update cue version in integration tests --- .github/workflows/testing_integration.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing_integration.yaml b/.github/workflows/testing_integration.yaml index 88ef38f83..dc1fe0823 100644 --- a/.github/workflows/testing_integration.yaml +++ b/.github/workflows/testing_integration.yaml @@ -46,7 +46,7 @@ jobs: - name: Install Python dependencies run: pip install -e '.[modules, test]' - name: Install CUE - run: go install cuelang.org/go/cmd/cue@latest + run: go install cuelang.org/go/cmd/cue@v0.6.0 - name: Run pytest run: cd tests/integration && coverage run -m pytest --run-integration . - name: Send coverage repot to codecov