15
15
run :
16
16
working-directory : ./vscode-extension
17
17
steps :
18
- - uses : actions/checkout@v2
19
- - uses : actions/setup-node@v2
18
+ - uses : actions/checkout@v4
19
+ - uses : actions/setup-node@v4
20
20
with :
21
21
node-version : 20.x
22
22
cache : ' yarn'
36
36
matrix :
37
37
node-version : [18.x, 20.x]
38
38
steps :
39
- - uses : actions/checkout@v2
40
- - uses : actions/setup-node@v2
39
+ - uses : actions/checkout@v4
40
+ - uses : actions/setup-node@v4
41
41
with :
42
42
node-version : ${{ matrix.node-version }}
43
43
cache : ' yarn'
50
50
name : JS Lint
51
51
runs-on : ubuntu-latest
52
52
steps :
53
- - uses : actions/checkout@v2
54
- - uses : actions/setup-node@v2
53
+ - uses : actions/checkout@v4
54
+ - uses : actions/setup-node@v4
55
55
with :
56
56
node-version : 20.x
57
57
cache : ' yarn'
68
68
name : Flow Typecheck
69
69
runs-on : ubuntu-latest
70
70
steps :
71
- - uses : actions/checkout@v2
72
- - uses : actions/setup-node@v2
71
+ - uses : actions/checkout@v4
72
+ - uses : actions/setup-node@v4
73
73
with :
74
74
node-version : 20.x
75
75
cache : ' yarn'
92
92
os : windows-latest
93
93
runs-on : ${{ matrix.target.os }}
94
94
steps :
95
- - uses : actions/checkout@v2
95
+ - uses : actions/checkout@v4
96
96
- uses : actions-rs/toolchain@v1
97
97
with :
98
98
# Should stay in sync with fbcode/buck2/rust-toolchain
@@ -118,7 +118,7 @@ jobs:
118
118
# os: windows-latest
119
119
runs-on : ${{ matrix.target.os }}
120
120
steps :
121
- - uses : actions/checkout@v2
121
+ - uses : actions/checkout@v4
122
122
- uses : actions-rs/toolchain@v1
123
123
with :
124
124
# Should stay in sync with fbcode/buck2/rust-toolchain
@@ -139,7 +139,7 @@ jobs:
139
139
name : Rust Lint
140
140
runs-on : ubuntu-latest
141
141
steps :
142
- - uses : actions/checkout@v2
142
+ - uses : actions/checkout@v4
143
143
- uses : actions-rs/toolchain@v1
144
144
with :
145
145
# Should stay in sync with tools/third-party/rustfmt/.rustfmt-version
@@ -181,7 +181,7 @@ jobs:
181
181
artifact-name : relay-bin-win-x64
182
182
runs-on : ${{ matrix.target.os }}
183
183
steps :
184
- - uses : actions/checkout@v2
184
+ - uses : actions/checkout@v4
185
185
- uses : actions-rs/toolchain@v1
186
186
with :
187
187
# Should stay in sync with fbcode/buck2/rust-toolchain
@@ -190,7 +190,7 @@ jobs:
190
190
toolchain : nightly-2024-10-13
191
191
override : true
192
192
target : ${{ matrix.target.target }}
193
- - uses : actions/setup-node@v2
193
+ - uses : actions/setup-node@v4
194
194
if : github.event_name == 'push' && github.repository == 'facebook/relay' && github.ref == 'refs/heads/main'
195
195
with :
196
196
node-version : 20.x
@@ -230,8 +230,8 @@ jobs:
230
230
if : github.event_name == 'push' && github.repository == 'facebook/relay'
231
231
needs : [js-tests, js-lint, typecheck, build-tests, build-compiler]
232
232
steps :
233
- - uses : actions/checkout@v2
234
- - uses : actions/setup-node@v2
233
+ - uses : actions/checkout@v4
234
+ - uses : actions/setup-node@v4
235
235
with :
236
236
node-version : 18.x
237
237
registry-url : https://registry.npmjs.org/
0 commit comments