File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 29
29
run : |
30
30
echo "Action triggered by ${{ github.event.pull_request.html_url }}"
31
31
- name : Checkout
32
- uses : actions/checkout@v3
32
+ uses : actions/checkout@v4
33
33
with :
34
34
fetch-depth : 50 # this is to make sure we obtain the target base commit
35
35
- name : Python Setup
84
84
- name : Check ldd --version
85
85
run : ldd --version
86
86
- name : Checkout
87
- uses : actions/checkout@v3
87
+ uses : actions/checkout@v4
88
88
with :
89
89
fetch-depth : 50 # this is to make sure we obtain the target base commit
90
90
- name : Python Setup
Original file line number Diff line number Diff line change 20
20
run : |
21
21
echo "Action triggered by ${{ github.event.pull_request.html_url }}"
22
22
- name : Checkout
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
with :
25
25
fetch-depth : 50 # this is to make sure we obtain the target base commit
26
26
- name : Python Setup
93
93
- name : Check ldd --version
94
94
run : ldd --version
95
95
- name : Checkout
96
- uses : actions/checkout@v3
96
+ uses : actions/checkout@v4
97
97
with :
98
98
fetch-depth : 50 # this is to make sure we obtain the target base commit
99
99
- name : Python Setup
Original file line number Diff line number Diff line change @@ -41,12 +41,12 @@ jobs:
41
41
python3 -mpip install wheel
42
42
TORCHRL_BUILD_VERSION=0.6.1 python3 setup.py bdist_wheel
43
43
- name : Upload wheel for the test-wheel job
44
- uses : actions/upload-artifact@v3
44
+ uses : actions/upload-artifact@v4
45
45
with :
46
46
name : torchrl-win-${{ matrix.python_version[0] }}.whl
47
47
path : dist/torchrl-*.whl
48
48
- name : Upload wheel for download
49
- uses : actions/upload-artifact@v3
49
+ uses : actions/upload-artifact@v4
50
50
with :
51
51
name : torchrl-batch.whl
52
52
path : dist/*.whl
81
81
run : |
82
82
python3 -mpip install numpy pytest pytest-cov codecov unittest-xml-reporting pillow>=4.1.1 scipy av networkx expecttest pyyaml
83
83
- name : Download built wheels
84
- uses : actions/download-artifact@v3
84
+ uses : actions/download-artifact@v4
85
85
with :
86
86
name : torchrl-win-${{ matrix.python_version }}.whl
87
87
path : wheels
You can’t perform that action at this time.
0 commit comments