create-node-lib 2.9.6 → 2.9.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.9.7](https://github.com/lirantal/create-node-lib/compare/v2.9.6...v2.9.7) (2026-02-22)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Upgrade Node setup and Codecov action versions ([78af575](https://github.com/lirantal/create-node-lib/commit/78af57536edbbffbd3e644bbe79079e127a34789))
7
+
1
8
  ## [2.9.6](https://github.com/lirantal/create-node-lib/compare/v2.9.5...v2.9.6) (2026-02-22)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-node-lib",
3
- "version": "2.9.6",
3
+ "version": "2.9.7",
4
4
  "description": "Scaffolding out a Node.js library module",
5
5
  "bin": "./bin/cli.js",
6
6
  "engines": {
@@ -12,7 +12,7 @@ jobs:
12
12
  runs-on: ${{matrix.platform}}
13
13
  steps:
14
14
  - uses: actions/checkout@v4
15
- - uses: actions/setup-node@v4
15
+ - uses: actions/setup-node@v6
16
16
  with:
17
17
  node-version: ${{matrix.node}}
18
18
  - name: install dependencies
@@ -24,7 +24,7 @@ jobs:
24
24
  - name: run tests
25
25
  run: npm run test
26
26
  - name: coverage
27
- uses: codecov/codecov-action@v4
27
+ uses: codecov/codecov-action@v5
28
28
  if: github.actor != 'dependabot[bot]'
29
29
  with:
30
30
  fail_ci_if_error: true
@@ -38,7 +38,7 @@ jobs:
38
38
  needs: test
39
39
  steps:
40
40
  - uses: actions/checkout@v4
41
- - uses: actions/setup-node@v4
41
+ - uses: actions/setup-node@v6
42
42
  with:
43
43
  node-version: "22.x"
44
44
  - name: install dependencies