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
2 changed files with 6 additions and 2 deletions

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.