Skip to content

Commit 09f2697

Browse files
committed
fix(CI): node 16 -> node 20
1 parent 83048e7 commit 09f2697

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/actions/setup_environment/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: Setup CI Environment
22
inputs:
33
python-version:
4-
default: "3.9"
4+
default: "3.10"
55
type: string
66

77
runs:
88
using: composite
99
steps:
1010
- name: Setup Python
11-
uses: actions/setup-python@v4
11+
uses: actions/setup-python@v5
1212
with:
1313
python-version: ${{ inputs.python-version }}
1414

.github/workflows/build_and_upload_wheel.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout Repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
ref: ${{ inputs.branch }}
2929
submodules: recursive
@@ -36,7 +36,7 @@ jobs:
3636
python -m build
3737
3838
- name: Upload Wheels to Github
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: wheels
4242
path: dist/*.whl
@@ -49,13 +49,13 @@ jobs:
4949
upload: ${{ steps.trigger_upload.outputs.value }}
5050
steps:
5151
- name: Setup Python
52-
uses: actions/setup-python@v4
52+
uses: actions/setup-python@v5
5353
with:
54-
python-version: "3.9"
54+
python-version: "3.10"
5555

5656
- name: Download Artifacts From Github
5757
continue-on-error: true
58-
uses: actions/download-artifact@v3
58+
uses: actions/download-artifact@v4
5959
with:
6060
name: wheels
6161

.github/workflows/run_linting.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout Repository
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
submodules: recursive
1818

.github/workflows/run_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- "3.10"
2020
steps:
2121
- name: Checkout Repository
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
submodules: recursive
2525

0 commit comments

Comments
 (0)