mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +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
Notes:
sideshowbarker
2024-07-17 04:50:33 +09:00
Author: https://github.com/filiphsps Commit: https://github.com/SerenityOS/serenity/commit/0252d7291c Pull-request: https://github.com/SerenityOS/serenity/pull/15901 Reviewed-by: https://github.com/ADKaster ✅
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:
|
||||
- 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 ===
|
||||
|
||||
|
|
4
.github/workflows/libjs-test262.yml
vendored
4
.github/workflows/libjs-test262.yml
vendored
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue