77
88jobs :
99 Build :
10- if : " !contains(github.event.head_commit.message, '[skip ci]')"
10+ if : ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
1111 runs-on : ${{ matrix.os }}
1212 strategy :
1313 fail-fast : false
@@ -77,10 +77,10 @@ jobs:
7777 ZMQ_SHARED : false
7878 ARCH : ${{ matrix.ARCH }}
7979 steps :
80- - uses : actions/checkout@v3
80+ - uses : actions/checkout@v4
8181
8282 - name : Cache
83- uses : actions/cache@v3
83+ uses : actions/cache@v4
8484 with :
8585 path : |
8686 ./node_modules/
@@ -101,14 +101,14 @@ jobs:
101101 python : true
102102 architecture : ${{ matrix.cpp_arch }}
103103
104- - uses : pnpm/action-setup@v2.2.4
104+ - uses : pnpm/action-setup@v4
105105 if : ${{ !matrix.docker }}
106106 with :
107- version : 8
107+ version : 9
108108
109109 - name : Install Node
110110 if : ${{ !matrix.docker }}
111- uses : actions/setup-node@v3
111+ uses : actions/setup-node@v4
112112 with :
113113 node-version : ${{ matrix.node_version }}
114114 architecture : ${{ matrix.node_arch }}
@@ -154,7 +154,7 @@ jobs:
154154
155155 - name : Test (Debug)
156156 if : ${{ !matrix.docker }}
157- uses : nick-fields/retry@v2
157+ uses : nick-fields/retry@v3
158158 with :
159159 timeout_minutes : 5
160160 max_attempts : 1
@@ -166,7 +166,7 @@ jobs:
166166
167167 - name : Test Electron (Main)
168168 if : " ${{ contains(matrix.os, 'ubuntu') && !matrix.docker }}"
169- uses : nick-fields/retry@v2
169+ uses : nick-fields/retry@v3
170170 with :
171171 timeout_minutes : 5
172172 max_attempts : 1
@@ -179,7 +179,7 @@ jobs:
179179
180180 - name : Tests + GC Tests (Release)
181181 if : ${{ !matrix.docker }}
182- uses : nick-fields/retry@v2
182+ uses : nick-fields/retry@v3
183183 with :
184184 timeout_minutes : 5
185185 max_attempts : 1
0 commit comments