CI: Upgrade actions/setup-python to v4

Just as the actions/checkout the only breaking change is a internal one
related to upgrading from node 12 to node 16.
This commit is contained in:
Filiph Sandström 2022-11-03 07:03:40 +01:00 committed by Linus Groh
parent 3ddefb9f5f
commit 0252d7291c
Notes: sideshowbarker 2024-07-17 04:50:33 +09:00
2 changed files with 6 additions and 2 deletions

View File

@ -33,7 +33,9 @@ jobs:
steps:
- uses: actions/checkout@v2
# Set default Python to python 3.x, and set Python path such that pip install works properly
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.x'
# === OS SETUP ===

View File

@ -57,7 +57,9 @@ jobs:
)
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Python dependencies
# The setup-python action set default python to python3.x. Note that we are not using system python here.