diff --git a/.github/workflows/nightly-test.yaml b/.github/workflows/nightly-test.yaml index 33d50cabe..0dda019bb 100644 --- a/.github/workflows/nightly-test.yaml +++ b/.github/workflows/nightly-test.yaml @@ -68,7 +68,7 @@ jobs: - name: Install Go uses: actions/setup-go@v5 with: - go-version-file: './src/k8s/go.mod' + go-version: '1.22' - name: go mod download working-directory: src/k8s run: go mod download @@ -82,7 +82,7 @@ jobs: pip install -r tests/integration/requirements-test.txt pip install -r tests/integration/requirements-dev.txt # Needed by pylint (TICSQServer), used in build-scripts, k8s/scripts/cis - pip install requests jinja2 + pip install requests jinja2 semver # Integration tests are importing a local test_util module. Needed for pylint. export PYTHONPATH="$(pwd)/tests/integration/tests"