File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Node.js CI Windows Platform
2
2
3
3
on : [push, pull_request]
4
4
5
+ env :
6
+ PYTHON_VERSION : ' 3.11'
7
+
5
8
permissions :
6
9
contents : read
7
10
18
21
runs-on : ${{ matrix.os }}
19
22
steps :
20
23
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
24
+ - name : Set up Python ${{ env.PYTHON_VERSION }}
25
+ uses : actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
26
+ with :
27
+ python-version : ${{ env.PYTHON_VERSION }}
21
28
- name : Use Node.js ${{ matrix.node-version }}
22
29
uses : actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
23
30
with :
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ name: Node.js CI Unix Platform
2
2
3
3
on : [push, pull_request]
4
4
5
+ env :
6
+ PYTHON_VERSION : ' 3.11'
7
+
5
8
permissions :
6
9
contents : read
7
10
23
26
runs-on : ${{ matrix.os }}
24
27
steps :
25
28
- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
29
+ - name : Set up Python ${{ env.PYTHON_VERSION }}
30
+ uses : actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.0
31
+ with :
32
+ python-version : ${{ env.PYTHON_VERSION }}
26
33
- name : Use Node.js ${{ matrix.node-version }}
27
34
uses : actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
28
35
with :
You can’t perform that action at this time.
0 commit comments