@skilbjo/config-rc 1.0.27 → 1.0.28

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.
@@ -19,11 +19,14 @@ jobs:
19
19
  pull-requests: read # Needed to read PR information
20
20
 
21
21
  steps:
22
+ - uses: step-security/harden-runner@v2
23
+ with:
24
+ egress-policy: audit
22
25
  - uses: actions/checkout@v5
23
26
  with:
24
27
  ref: ${{ github.event.pull_request.head.sha }}
25
28
 
26
- - uses: actions/setup-node@v4
29
+ - uses: actions/setup-node@v5
27
30
  with:
28
31
  node-version-file: .nvmrc
29
32
  cache: npm
@@ -37,7 +40,7 @@ jobs:
37
40
  - name: Set up NPM authentication for dry release
38
41
  run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.ACTIONS_TOKEN }}" >> ~/.npmrc
39
42
 
40
- - uses: cycjimmy/semantic-release-action@v4
43
+ - uses: cycjimmy/semantic-release-action@v5
41
44
  id: semantic
42
45
  with:
43
46
  dry_run: true
@@ -25,19 +25,22 @@ jobs:
25
25
  new_release_published: ${{ steps.semantic.outputs.new_release_published }}
26
26
 
27
27
  steps:
28
+ - uses: step-security/harden-runner@v2
29
+ with:
30
+ egress-policy: audit
28
31
  - uses: actions/checkout@v5
29
32
  with:
30
33
  persist-credentials: false
31
34
  token: ${{ secrets.ACTIONS_TOKEN }}
32
35
 
33
- - uses: actions/setup-node@v4
36
+ - uses: actions/setup-node@v5
34
37
  with:
35
38
  node-version-file: .nvmrc
36
39
  cache: npm
37
40
 
38
41
  - run: make ci
39
42
 
40
- - uses: cycjimmy/semantic-release-action@v4
43
+ - uses: cycjimmy/semantic-release-action@v5
41
44
  id: semantic
42
45
  with:
43
46
  semantic_version: 24
package/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [1.0.28](https://github.com/skilbjo/config-rc/compare/v1.0.27...v1.0.28) (2025-09-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps-dev:** bump @types/node from 24.3.0 to 24.3.1 ([#381](https://github.com/skilbjo/config-rc/issues/381)) ([9f2ec1b](https://github.com/skilbjo/config-rc/commit/9f2ec1bc397d66a4de7ac34a11f629057650c357))
7
+ * **deps:** bump actions/setup-node from 4 to 5 ([#382](https://github.com/skilbjo/config-rc/issues/382)) ([6caed29](https://github.com/skilbjo/config-rc/commit/6caed293878cf226c63d9f74afd720d2f76d6c09))
8
+ * **deps:** bump cycjimmy/semantic-release-action from 4 to 5 ([#378](https://github.com/skilbjo/config-rc/issues/378)) ([8eb32f7](https://github.com/skilbjo/config-rc/commit/8eb32f75f05c1e89dac1e36f773d1ff9a8909945))
9
+
1
10
  ## [1.0.27](https://github.com/skilbjo/config-rc/compare/v1.0.26...v1.0.27) (2025-08-30)
2
11
 
3
12
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@skilbjo/config-rc",
4
- "version": "1.0.27",
4
+ "version": "1.0.28",
5
5
  "description": "eslint, prettier, & tsconfig config",
6
6
  "main": "index.js",
7
7
  "private": false,
@@ -48,7 +48,7 @@
48
48
  "devDependencies": {
49
49
  "@commitlint/cli": "19.3.0",
50
50
  "@commitlint/config-angular": "16.2.4",
51
- "@types/node": "24.3.0",
51
+ "@types/node": "24.3.1",
52
52
  "depcheck": "1.4.7",
53
53
  "husky": "8.0.1"
54
54
  },