From adbb5d367a493b23d3e287a8bfa1b98afdb41501 Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Tue, 7 Mar 2023 11:28:57 +0100 Subject: [PATCH] [godot] Update setup action to latest Python/Scons versions. --- .github/actions/setup-godot-deps/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-godot-deps/action.yml b/.github/actions/setup-godot-deps/action.yml index 7d10dcdf5..ee33c1f38 100644 --- a/.github/actions/setup-godot-deps/action.yml +++ b/.github/actions/setup-godot-deps/action.yml @@ -12,7 +12,7 @@ runs: steps: # Use python 3.x release (works cross platform) - name: Set up Python 3.x - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: # Semantic version range syntax or exact version of a Python version python-version: ${{ inputs.python-version }} @@ -23,5 +23,5 @@ runs: shell: bash run: | python -c "import sys; print(sys.version)" - python -m pip install scons + python -m pip install scons==4.4.0 scons --version \ No newline at end of file