26
26
os : [macos-latest, ubuntu-latest, windows-latest]
27
27
fail-fast : false
28
28
steps :
29
- - uses : actions/checkout@master
29
+ - uses : actions/checkout@v2
30
30
- uses : actions-rs/toolchain@v1
31
31
- name : Set up the Windows environment
32
32
shell : bash
57
57
os : [macos-latest, ubuntu-latest, windows-latest]
58
58
fail-fast : false
59
59
steps :
60
- - uses : actions/checkout@master
60
+ - uses : actions/checkout@v2
61
61
- uses : actions-rs/toolchain@v1
62
62
- uses : actions/setup-python@v2
63
63
with :
77
77
with :
78
78
command : build
79
79
args : --release --verbose ${{ env.CARGO_ARGS }}
80
- - uses : actions/setup-python@v1
80
+ - uses : actions/setup-python@v2
81
81
with :
82
82
python-version : 3.8
83
83
- name : Install pipenv
@@ -115,7 +115,7 @@ jobs:
115
115
name : Check Rust code with rustfmt and clippy
116
116
runs-on : ubuntu-latest
117
117
steps :
118
- - uses : actions/checkout@master
118
+ - uses : actions/checkout@v2
119
119
- uses : actions-rs/toolchain@v1
120
120
with :
121
121
profile : minimal
@@ -137,7 +137,7 @@ jobs:
137
137
with :
138
138
command : clippy
139
139
args : --manifest-path=wasm/lib/Cargo.toml -- -Dwarnings
140
- - uses : actions/setup-python@v1
140
+ - uses : actions/setup-python@v2
141
141
with :
142
142
python-version : 3.8
143
143
- name : install flake8
@@ -153,7 +153,7 @@ jobs:
153
153
name : Run tests under miri
154
154
runs-on : ubuntu-latest
155
155
steps :
156
- - uses : actions/checkout@master
156
+ - uses : actions/checkout@v2
157
157
- uses : actions-rs/toolchain@v1
158
158
with :
159
159
profile : minimal
@@ -170,7 +170,7 @@ jobs:
170
170
needs : rust_tests
171
171
runs-on : ubuntu-latest
172
172
steps :
173
- - uses : actions/checkout@master
173
+ - uses : actions/checkout@v2
174
174
- name : Cache cargo dependencies
175
175
uses : actions/cache@v2
176
176
with :
@@ -188,7 +188,7 @@ jobs:
188
188
wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux32.tar.gz
189
189
mkdir geckodriver
190
190
tar -xzf geckodriver-v0.24.0-linux32.tar.gz -C geckodriver
191
- - uses : actions/setup-python@v1
191
+ - uses : actions/setup-python@v2
192
192
with :
193
193
python-version : 3.8
194
194
- name : Install pipenv
@@ -220,4 +220,3 @@ jobs:
220
220
PUBLISH_DIR : ./wasm/demo/dist
221
221
EXTERNAL_REPOSITORY : RustPython/demo
222
222
PUBLISH_BRANCH : master
223
-
0 commit comments