diff options
author | Filiph Sandström <filiph.sandstrom@filfatstudios.com> | 2022-11-03 07:03:40 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-11-03 11:29:45 +0000 |
commit | 0252d7291ce8aed11848718eab3516c92f4c39a6 (patch) | |
tree | 63e66c779f8e26e02fff669098f89febb3b13306 /.github | |
parent | 3ddefb9f5f7250f9937c61a570bf67bd8124abb2 (diff) | |
download | serenity-0252d7291ce8aed11848718eab3516c92f4c39a6.zip |
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.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cmake.yml | 4 | ||||
-rw-r--r-- | .github/workflows/libjs-test262.yml | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 74e411e803..b9cd0c256b 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -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 === diff --git a/.github/workflows/libjs-test262.yml b/.github/workflows/libjs-test262.yml index 97f8f8ff3b..36c5a185b5 100644 --- a/.github/workflows/libjs-test262.yml +++ b/.github/workflows/libjs-test262.yml @@ -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. |