File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -165,9 +165,9 @@ jobs:
165
165
if : needs.changes.outputs.typescript == 'true'
166
166
167
167
- name : Install Nodejs
168
- uses : actions/setup-node@v3
168
+ uses : actions/setup-node@v4
169
169
with :
170
- node-version : 16
170
+ node-version : 18
171
171
if : needs.changes.outputs.typescript == 'true'
172
172
173
173
- name : Install xvfb
Original file line number Diff line number Diff line change 21
21
rustup component add rustfmt rust-src
22
22
rustup default stable
23
23
- name : Cache cargo
24
- uses : actions/cache@v3
24
+ uses : actions/cache@v4
25
25
with :
26
26
path : |
27
27
~/.cargo/bin/
39
39
uses : actions/checkout@v4
40
40
41
41
- name : Restore cargo cache
42
- uses : actions/cache@v3
42
+ uses : actions/cache@v4
43
43
with :
44
44
path : |
45
45
~/.cargo/bin/
52
52
run : cargo xtask metrics build
53
53
54
54
- name : Cache target
55
- uses : actions/cache@v3
55
+ uses : actions/cache@v4
56
56
with :
57
57
path : target/
58
58
key : ${{ runner.os }}-target-${{ github.sha }}
76
76
uses : actions/checkout@v4
77
77
78
78
- name : Restore cargo cache
79
- uses : actions/cache@v3
79
+ uses : actions/cache@v4
80
80
with :
81
81
path : |
82
82
~/.cargo/bin/
86
86
key : ${{ runner.os }}-cargo-${{ github.sha }}
87
87
88
88
- name : Restore target cache
89
- uses : actions/cache@v3
89
+ uses : actions/cache@v4
90
90
with :
91
91
path : target/
92
92
key : ${{ runner.os }}-target-${{ github.sha }}
Original file line number Diff line number Diff line change 80
80
- name : Install Node.js
81
81
uses : actions/setup-node@v4
82
82
with :
83
- node-version : 16
83
+ node-version : 18
84
84
85
85
- name : Update apt repositories
86
86
if : matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'arm-unknown-linux-gnueabihf'
@@ -188,9 +188,9 @@ jobs:
188
188
needs : ["dist", "dist-x86_64-unknown-linux-musl"]
189
189
steps :
190
190
- name : Install Nodejs
191
- uses : actions/setup-node@v3
191
+ uses : actions/setup-node@v4
192
192
with :
193
- node-version : 16
193
+ node-version : 18
194
194
195
195
- run : echo "TAG=$(date --iso -u)" >> $GITHUB_ENV
196
196
if : github.ref == 'refs/heads/release'
You can’t perform that action at this time.
0 commit comments