4747 uses : actions/checkout@v5
4848
4949 - name : Setup Node.js
50- uses : actions/setup-node@v5
50+ uses : actions/setup-node@v6
5151 with :
5252 node-version : 22
5353
7777
7878 - name : Commit fixed formatting issues
7979 if : ${{ failure() }}
80- uses : stefanzweifel/git-auto-commit-action@v6
80+ uses : stefanzweifel/git-auto-commit-action@v7
8181 with :
8282 commit_message : " 🧹 style: apply automatic formatting fixes"
8383 branch : ${{ github.head_ref }}
9292 uses : actions/checkout@v5
9393
9494 - name : Setup Node.js
95- uses : actions/setup-node@v5
95+ uses : actions/setup-node@v6
9696 with :
9797 node-version : 22
9898
@@ -122,7 +122,7 @@ jobs:
122122
123123 - name : Commit fixed linting issues
124124 if : ${{ failure() }}
125- uses : stefanzweifel/git-auto-commit-action@v6
125+ uses : stefanzweifel/git-auto-commit-action@v7
126126 with :
127127 commit_message : " 🐛 fix: apply automatic linting fixes"
128128 branch : ${{ github.head_ref }}
@@ -135,7 +135,7 @@ jobs:
135135 uses : actions/checkout@v5
136136
137137 - name : Setup Node.js
138- uses : actions/setup-node@v5
138+ uses : actions/setup-node@v6
139139 with :
140140 node-version : 22
141141
@@ -160,7 +160,7 @@ jobs:
160160 run : pnpm test:coverage
161161
162162 - name : Download previous coverage artifact
163- uses : actions/download-artifact@v5
163+ uses : actions/download-artifact@v6
164164 continue-on-error : true
165165 with :
166166 name : test-coverage-{{ matrix.runs-on }}
@@ -178,7 +178,7 @@ jobs:
178178
179179 - name : Upload test coverage
180180 if : success()
181- uses : actions/upload-artifact@v4
181+ uses : actions/upload-artifact@v5
182182 with :
183183 name : test-coverage-{{ matrix.runs-on }}
184184 path : coverage/
@@ -192,7 +192,7 @@ jobs:
192192 uses : actions/checkout@v5
193193
194194 - name : Setup Node.js
195- uses : actions/setup-node@v5
195+ uses : actions/setup-node@v6
196196 with :
197197 node-version : 22
198198
@@ -217,7 +217,7 @@ jobs:
217217 run : pnpm build
218218
219219 - name : Upload build artifacts
220- uses : actions/upload-artifact@v4
220+ uses : actions/upload-artifact@v5
221221 continue-on-error : true
222222 with :
223223 name : build-artifacts-{{ matrix.runs-on }}
@@ -232,7 +232,7 @@ jobs:
232232 uses : actions/checkout@v5
233233
234234 - name : Setup Node.js
235- uses : actions/setup-node@v5
235+ uses : actions/setup-node@v6
236236 with :
237237 node-version : 22
238238 registry-url : " https://registry.npmjs.org"
@@ -255,7 +255,7 @@ jobs:
255255 run : pnpm install --frozen-lockfile
256256
257257 - name : Download build artifacts
258- uses : actions/download-artifact@v5
258+ uses : actions/download-artifact@v6
259259 continue-on-error : true
260260 with :
261261 name : build-artifacts-{{ matrix.runs-on }}
0 commit comments