mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:17:35 +00:00
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:
parent
3ddefb9f5f
commit
0252d7291c
2 changed files with 6 additions and 2 deletions
4
.github/workflows/cmake.yml
vendored
4
.github/workflows/cmake.yml
vendored
|
@ -33,7 +33,9 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
# Set default Python to python 3.x, and set Python path such that pip install works properly
|
# 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 ===
|
# === OS SETUP ===
|
||||||
|
|
||||||
|
|
4
.github/workflows/libjs-test262.yml
vendored
4
.github/workflows/libjs-test262.yml
vendored
|
@ -57,7 +57,9 @@ jobs:
|
||||||
)
|
)
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.x'
|
||||||
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
# The setup-python action set default python to python3.x. Note that we are not using system python here.
|
# The setup-python action set default python to python3.x. Note that we are not using system python here.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue