@@ -75,10 +75,10 @@ jobs:
75
75
ZMQ_SHARED : false
76
76
ARCH : ${{ matrix.ARCH }}
77
77
steps :
78
- - uses : actions/checkout@v3
78
+ - uses : actions/checkout@v4
79
79
80
80
- name : Cache
81
- uses : actions/cache@v3
81
+ uses : actions/cache@v4
82
82
with :
83
83
path : |
84
84
./node_modules/
@@ -96,14 +96,14 @@ jobs:
96
96
python : true
97
97
architecture : ${{ matrix.cpp_arch }}
98
98
99
- - uses : pnpm/action-setup@v2.2.4
99
+ - uses : pnpm/action-setup@v4.0.0
100
100
if : ${{ !matrix.docker }}
101
101
with :
102
102
version : 8
103
103
104
104
- name : Install Node
105
105
if : ${{ !matrix.docker }}
106
- uses : actions/setup-node@v3
106
+ uses : actions/setup-node@v4
107
107
with :
108
108
node-version : ${{ matrix.node_version }}
109
109
architecture : ${{ matrix.node_arch }}
@@ -139,7 +139,7 @@ jobs:
139
139
docker run --volume ${{ github.workspace }}:/app --workdir /app --privileged builder sh -c "${{ matrix.docker_cmd }}"
140
140
141
141
- name : Upload artifacts
142
- uses : actions/upload-artifact@v3
142
+ uses : actions/upload-artifact@v4
143
143
with :
144
144
path : ./prebuilds
145
145
@@ -149,7 +149,7 @@ jobs:
149
149
150
150
- name : Test (Debug)
151
151
if : ${{ !matrix.docker }}
152
- uses : nick-fields/retry@v2
152
+ uses : nick-fields/retry@v3
153
153
with :
154
154
timeout_minutes : 5
155
155
max_attempts : 1
@@ -160,7 +160,7 @@ jobs:
160
160
161
161
- name : Test Electron (Main)
162
162
if : " ${{ contains(matrix.os, 'ubuntu') && !matrix.docker }}"
163
- uses : nick-fields/retry@v2
163
+ uses : nick-fields/retry@v3
164
164
with :
165
165
timeout_minutes : 5
166
166
max_attempts : 1
@@ -173,7 +173,7 @@ jobs:
173
173
174
174
- name : Tests + GC Tests (Release)
175
175
if : ${{ !matrix.docker }}
176
- uses : nick-fields/retry@v2
176
+ uses : nick-fields/retry@v3
177
177
with :
178
178
timeout_minutes : 5
179
179
max_attempts : 1
0 commit comments