Skip to content

Commit 79f03ec

Browse files
chore(deps): bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a3f29a1 commit 79f03ec

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/CI.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ jobs:
121121
name: stable - ${{ matrix.settings.target }} - node@18
122122
runs-on: ${{ matrix.settings.host }}
123123
steps:
124-
- uses: actions/checkout@v4
124+
- uses: actions/checkout@v6
125125
- name: Setup node
126-
uses: actions/setup-node@v4
126+
uses: actions/setup-node@v6
127127
if: ${{ !matrix.settings.docker }}
128128
with:
129129
node-version: 18
@@ -171,7 +171,7 @@ jobs:
171171
- name: Install dependencies
172172
run: node scripts/preinstall.js && yarn add esno@^4.0.0 shelljs@^0.8.5 @napi-rs/cli@^2.15.2 --registry https://registry.npmjs.org/ --prod
173173
- name: Setup node x86
174-
uses: actions/setup-node@v4
174+
uses: actions/setup-node@v6
175175
if: matrix.settings.target == 'i686-pc-windows-msvc'
176176
with:
177177
node-version: 18
@@ -189,7 +189,7 @@ jobs:
189189
if: ${{ !matrix.settings.docker }}
190190
shell: bash
191191
- name: Upload artifact
192-
uses: actions/upload-artifact@v4
192+
uses: actions/upload-artifact@v5
193193
with:
194194
name: bindings-${{ matrix.settings.target }}
195195
path: |
@@ -218,15 +218,15 @@ jobs:
218218
- "18"
219219
runs-on: ${{ matrix.settings.host }}
220220
steps:
221-
- uses: actions/checkout@v4
221+
- uses: actions/checkout@v6
222222
- name: Setup node
223-
uses: actions/setup-node@v4
223+
uses: actions/setup-node@v6
224224
with:
225225
node-version: ${{ matrix.node }}
226226
check-latest: true
227227

228228
- name: Setup node x86
229-
uses: actions/setup-node@v4
229+
uses: actions/setup-node@v6
230230
if: matrix.settings.target == 'i686-pc-windows-msvc'
231231
with:
232232
node-version: 18
@@ -241,7 +241,7 @@ jobs:
241241
- name: Install dependencies
242242
run: node scripts/preinstall.js && yarn add esno@^4.0.0 shelljs@^0.8.5 @napi-rs/cli@^2.15.2 --registry https://registry.npmjs.org/ --prod
243243
- name: Download artifacts
244-
uses: actions/download-artifact@v4
244+
uses: actions/download-artifact@v6
245245
with:
246246
name: bindings-${{ matrix.settings.target }}
247247
path: .
@@ -261,17 +261,17 @@ jobs:
261261
- "18"
262262
runs-on: ubuntu-latest
263263
steps:
264-
- uses: actions/checkout@v4
264+
- uses: actions/checkout@v6
265265
- name: Setup node
266-
uses: actions/setup-node@v4
266+
uses: actions/setup-node@v6
267267
with:
268268
node-version: ${{ matrix.node }}
269269
check-latest: true
270270

271271
- name: Install dependencies
272272
run: node scripts/preinstall.js && yarn add esno@^4.0.0 shelljs@^0.8.5 @napi-rs/cli@^2.15.2 --registry https://registry.npmjs.org/ --prod
273273
- name: Download artifacts
274-
uses: actions/download-artifact@v4
274+
uses: actions/download-artifact@v6
275275
with:
276276
name: bindings-x86_64-unknown-linux-gnu
277277
path: .
@@ -288,17 +288,17 @@ jobs:
288288
- test-linux-x64-gnu-binding
289289
- test-windows-binding
290290
steps:
291-
- uses: actions/checkout@v4
291+
- uses: actions/checkout@v6
292292
- name: Setup node
293-
uses: actions/setup-node@v4
293+
uses: actions/setup-node@v6
294294
with:
295295
node-version: 18
296296
check-latest: true
297297

298298
- name: Install dependencies
299299
run: node scripts/preinstall.js && yarn add esno@^4.0.0 shelljs@^0.8.5 @napi-rs/cli@^2.15.2 --registry https://registry.npmjs.org/ --prod
300300
- name: Download all artifacts
301-
uses: actions/download-artifact@v4
301+
uses: actions/download-artifact@v6
302302
with:
303303
path: artifacts
304304
- name: Move artifacts

0 commit comments

Comments
 (0)