diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-10 11:29:54 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-06-10 11:29:54 +0200 |
commit | 4fd7b2fc0fe654e1fa546881e58051a6aff00163 (patch) | |
tree | f280f0cfebcd312d7e615e004497de8c6b0eda77 | |
parent | 5833f597865c773fae3ee09fc4e31d4a243f812d (diff) | |
download | redot-engine-4fd7b2fc0fe654e1fa546881e58051a6aff00163.tar.gz |
CI: Pin Python 3.12.3 to workaround GHA issue
macOS runners can't extract the 3.12.4 tarball properly it seems.
https://github.com/actions/setup-python/issues/886
-rw-r--r-- | .github/actions/godot-deps/action.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/actions/godot-deps/action.yml b/.github/actions/godot-deps/action.yml index 07a364cd79..607666ec5f 100644 --- a/.github/actions/godot-deps/action.yml +++ b/.github/actions/godot-deps/action.yml @@ -3,7 +3,7 @@ description: Setup Python, install the pip version of SCons. inputs: python-version: description: The Python version to use. - default: "3.x" + default: "3.12.3" python-arch: description: The Python architecture. default: "x64" |