Skip to content

Commit a6201c3

Browse files
build(deps-dev): bump the npm group across 1 directory with 5 updates (#114)
* build(deps-dev): bump the npm group across 1 directory with 5 updates Bumps the npm group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@napi-rs/cli](https://github.com/napi-rs/napi-rs) | `3.4.1` | `3.5.0` | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.10.1` | `25.0.2` | | [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.4` | | [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.14` | `0.28.15` | | [oxlint](https://github.com/oxc-project/oxc/tree/HEAD/npm/oxlint) | `1.28.0` | `1.33.0` | Updates `@napi-rs/cli` from 3.4.1 to 3.5.0 - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](https://github.com/napi-rs/napi-rs/compare/@napi-rs/cli@3.4.1...@napi-rs/cli@3.5.0) Updates `@types/node` from 24.10.1 to 25.0.2 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `prettier` from 3.6.2 to 3.7.4 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](prettier/prettier@3.6.2...3.7.4) Updates `typedoc` from 0.28.14 to 0.28.15 - [Release notes](https://github.com/TypeStrong/TypeDoc/releases) - [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md) - [Commits](TypeStrong/typedoc@v0.28.14...v0.28.15) Updates `oxlint` from 1.28.0 to 1.33.0 - [Release notes](https://github.com/oxc-project/oxc/releases) - [Changelog](https://github.com/oxc-project/oxc/blob/main/npm/oxlint/CHANGELOG.md) - [Commits](https://github.com/oxc-project/oxc/commits/oxlint_v1.33.0/npm/oxlint) --- updated-dependencies: - dependency-name: "@napi-rs/cli" dependency-version: 3.5.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: "@types/node" dependency-version: 25.0.2 dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm - dependency-name: prettier dependency-version: 3.7.4 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm - dependency-name: typedoc dependency-version: 0.28.15 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm - dependency-name: oxlint dependency-version: 1.33.0 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * upgrade FreeBSD version * satisfy zizmor audit violations --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Brendan <2bndy5@gmail.com>
1 parent db1eacc commit a6201c3

9 files changed

Lines changed: 482 additions & 332 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ updates:
99
directory: /
1010
schedule:
1111
interval: "weekly"
12+
cooldown:
13+
default-days: 7
1214
groups:
1315
actions:
1416
patterns:
@@ -17,6 +19,8 @@ updates:
1719
directory: /
1820
schedule:
1921
interval: "weekly"
22+
cooldown:
23+
default-days: 7
2024
ignore:
2125
- dependency-name: bitfield-struct
2226
versions: ['>=0.10.0']
@@ -28,6 +32,8 @@ updates:
2832
directory: /
2933
schedule:
3034
interval: "weekly"
35+
cooldown:
36+
default-days: 7
3137
ignore:
3238
- dependency-name: opengpio
3339
versions: ['>=2.0.0']

.github/workflows/bump-n-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ permissions: {}
3636

3737
jobs:
3838
release-version-bump:
39+
environment:
40+
name: deployment-staging
3941
runs-on: ubuntu-latest
4042
steps:
4143
- uses: actions/checkout@v6

.github/workflows/node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ jobs:
139139
RUSTUP_IO_THREADS: 1
140140
with:
141141
operating_system: freebsd
142-
version: '14.2'
142+
version: '15.0'
143143
memory: 8G
144144
cpu_count: 3
145145
environment_variables: DEBUG RUSTUP_IO_THREADS

.github/workflows/rust.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,26 @@ jobs:
5454
run: nur test --profile ci
5555
- name: Generate coverage reports
5656
run: nur test lcov
57+
- name: Upload coverage as artifact
58+
uses: actions/upload-artifact@v7
59+
with:
60+
path: lcov.info
61+
name: lcov.info
62+
63+
coverage:
64+
needs: test
65+
runs-on: ubuntu-latest
66+
environment:
67+
name: test-coverage
68+
url: https://app.codecov.io/gh/nRF24/rf24-rs
69+
steps:
70+
- name: Download coverage artifact
71+
uses: actions/download-artifact@v8
72+
with:
73+
name: lcov.info
5774
- uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
5875
if: github.repository == 'nRF24/rf24-rs'
76+
id: codecov
5977
with:
6078
token: ${{ secrets.CODECOV_TOKEN }}
6179
files: lcov.info

bindings/node/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
},
3939
"license": "MIT",
4040
"devDependencies": {
41-
"@napi-rs/cli": "3.4.1",
42-
"@types/node": "24.10.1",
43-
"prettier": "3.6.2"
41+
"@napi-rs/cli": "3.5.1",
42+
"@types/node": "25.3.5",
43+
"prettier": "3.8.1"
4444
},
4545
"engines": {
4646
"node": ">= 10.16.0 < 11 || >= 11.8.0 < 12 || >= 12.0.0"

cspell.config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ words:
2222
- cdylib
2323
- clippy
2424
- codecov
25+
- cooldown
2526
- corepack
2627
- crossrefs
2728
- datasheet

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"version": "0.1.0",
55
"devDependencies": {
6-
"typedoc": "0.28.14",
6+
"typedoc": "0.28.17",
77
"typescript": "5.9.3"
88
},
99
"license": "MIT",

examples/node/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"private": true,
44
"version": "0.1.0",
55
"devDependencies": {
6-
"oxlint": "1.28.0",
7-
"prettier": "3.6.2",
6+
"oxlint": "1.51.0",
7+
"prettier": "3.8.1",
88
"typescript": "5.9.3"
99
},
1010
"license": "MIT",

0 commit comments

Comments
 (0)