From 2a963b124f741656d09d6deb7165fadd420c9a1d Mon Sep 17 00:00:00 2001 From: Jai Lafferty Date: Thu, 7 Aug 2025 14:45:57 +1000 Subject: [PATCH] pass python version as string as gha reads 3.10 as 3.1 --- .github/workflows/run-checks.yaml | 2 +- .../workflows/{{.input_project_name}}-run-tests.yml.tmpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-checks.yaml b/.github/workflows/run-checks.yaml index ed882388..c4f8d343 100644 --- a/.github/workflows/run-checks.yaml +++ b/.github/workflows/run-checks.yaml @@ -8,7 +8,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: '3.9' - name: Install act run: | # Install act diff --git a/template/{{.input_root_dir}}/.github/workflows/{{.input_project_name}}-run-tests.yml.tmpl b/template/{{.input_root_dir}}/.github/workflows/{{.input_project_name}}-run-tests.yml.tmpl index f6402b95..77a59a6f 100644 --- a/template/{{.input_root_dir}}/.github/workflows/{{.input_project_name}}-run-tests.yml.tmpl +++ b/template/{{.input_root_dir}}/.github/workflows/{{.input_project_name}}-run-tests.yml.tmpl @@ -28,7 +28,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: - python-version: 3.10 + python-version: '3.10' {{- if (eq .input_include_feature_store `yes`) }} # Feature store tests bring up a local Spark session, so Java is required. - uses: actions/setup-java@v4