7
7
8
8
jobs :
9
9
Build :
10
- if : " !contains(github.event.head_commit.message, '[skip ci]')"
10
+ if : ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
11
11
runs-on : ${{ matrix.os }}
12
12
strategy :
13
13
fail-fast : false
@@ -77,10 +77,10 @@ jobs:
77
77
ZMQ_SHARED : false
78
78
ARCH : ${{ matrix.ARCH }}
79
79
steps :
80
- - uses : actions/checkout@v3
80
+ - uses : actions/checkout@v4
81
81
82
82
- name : Cache
83
- uses : actions/cache@v3
83
+ uses : actions/cache@v4
84
84
with :
85
85
path : |
86
86
./node_modules/
@@ -101,14 +101,14 @@ jobs:
101
101
python : true
102
102
architecture : ${{ matrix.cpp_arch }}
103
103
104
- - uses : pnpm/action-setup@v2.2.4
104
+ - uses : pnpm/action-setup@v4
105
105
if : ${{ !matrix.docker }}
106
106
with :
107
- version : 8
107
+ version : 9
108
108
109
109
- name : Install Node
110
110
if : ${{ !matrix.docker }}
111
- uses : actions/setup-node@v3
111
+ uses : actions/setup-node@v4
112
112
with :
113
113
node-version : ${{ matrix.node_version }}
114
114
architecture : ${{ matrix.node_arch }}
@@ -154,7 +154,7 @@ jobs:
154
154
155
155
- name : Test (Debug)
156
156
if : ${{ !matrix.docker }}
157
- uses : nick-fields/retry@v2
157
+ uses : nick-fields/retry@v3
158
158
with :
159
159
timeout_minutes : 5
160
160
max_attempts : 1
@@ -166,7 +166,7 @@ jobs:
166
166
167
167
- name : Test Electron (Main)
168
168
if : " ${{ contains(matrix.os, 'ubuntu') && !matrix.docker }}"
169
- uses : nick-fields/retry@v2
169
+ uses : nick-fields/retry@v3
170
170
with :
171
171
timeout_minutes : 5
172
172
max_attempts : 1
@@ -179,7 +179,7 @@ jobs:
179
179
180
180
- name : Tests + GC Tests (Release)
181
181
if : ${{ !matrix.docker }}
182
- uses : nick-fields/retry@v2
182
+ uses : nick-fields/retry@v3
183
183
with :
184
184
timeout_minutes : 5
185
185
max_attempts : 1
0 commit comments