From ea1bd2d0660743204aba42f5cbc25c09726e416b Mon Sep 17 00:00:00 2001 From: Martin Tzvetanov Grigorov Date: Fri, 25 Oct 2024 16:20:39 +0300 Subject: [PATCH] Specify Python 3.12 version for Java interop tests Otherwise the action does nothing and uses the system-installed Python: ``` Run actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c Warning: Neither 'python-version' nor 'python-version-file' inputs were supplied. Attempting to find '.python-version' file. Warning: .python-version doesn't exist. Warning: The `python-version` input is not set. The version of Python currently in `PATH` will be used. ``` Signed-off-by: Martin Tzvetanov Grigorov --- .github/workflows/test-lang-java.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-lang-java.yml b/.github/workflows/test-lang-java.yml index e5d6aebf9d6..c757da674de 100644 --- a/.github/workflows/test-lang-java.yml +++ b/.github/workflows/test-lang-java.yml @@ -112,6 +112,8 @@ jobs: - name: 'Setup Python for Generating Input Data' uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0 + with: + python-version: '3.12' - name: 'Apt Install Compression Libs Required by Python' run: |