2828 js : ${{ steps.filter.outputs.js }}
2929 test : ${{ steps.filter.outputs.test }}
3030 steps :
31- - uses : actions/checkout@v5
31+ - uses : actions/checkout@v4
3232 - uses : dorny/paths-filter@v3
3333 id : filter
3434 with :
@@ -53,18 +53,18 @@ jobs:
5353
5454 steps :
5555 - name : 📂 Checkout repository
56- uses : actions/checkout@v5
56+ uses : actions/checkout@v4
5757
5858 - name : 🟢 Setup Node.js ${{ matrix.node-version }}
59- uses : actions/setup-node@v5
59+ uses : actions/setup-node@v4
6060 with :
6161 node-version : ${{ matrix.node-version }}
6262 cache : ' npm'
6363 cache-dependency-path : package-lock.json
6464
6565 - name : 📦 Cache node_modules
6666 id : cache-node-modules
67- uses : actions/cache@v5
67+ uses : actions/cache@v4
6868 with :
6969 path : node_modules
7070 key : ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('package-lock.json') }}
9090
9191 - name : 📤 Upload coverage to Codecov
9292 if : matrix.node-version == '20' && matrix.shard == 1
93- uses : codecov/codecov-action@v5
93+ uses : codecov/codecov-action@v4
9494 with :
9595 files : ./coverage/lcov.info
9696 flags : frontend
@@ -109,7 +109,7 @@ jobs:
109109
110110 - name : 💬 Comment PR with results
111111 if : github.event_name == 'pull_request' && matrix.node-version == '20' && matrix.shard == 1
112- uses : actions/github-script@v8
112+ uses : actions/github-script@v7
113113 with :
114114 script : |
115115 const fs = require('fs');
@@ -172,10 +172,10 @@ jobs:
172172
173173 steps :
174174 - name : 📂 Checkout repository
175- uses : actions/checkout@v5
175+ uses : actions/checkout@v4
176176
177177 - name : 🟢 Setup Node.js
178- uses : actions/setup-node@v5
178+ uses : actions/setup-node@v4
179179 with :
180180 node-version : ' 20'
181181 cache : ' npm'
@@ -197,10 +197,10 @@ jobs:
197197
198198 steps :
199199 - name : 📂 Checkout repository
200- uses : actions/checkout@v5
200+ uses : actions/checkout@v4
201201
202202 - name : 🟢 Setup Node.js
203- uses : actions/setup-node@v5
203+ uses : actions/setup-node@v4
204204 with :
205205 node-version : ' 20'
206206 cache : ' npm'
0 commit comments