@kununu/stylelint-config 4.5.5 → 4.5.6

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.
@@ -14,8 +14,12 @@ on:
14
14
  - major
15
15
 
16
16
  env:
17
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
- NPM_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
17
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
+ NPM_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
19
+
20
+ permissions:
21
+ id-token: write # Required for OIDC
22
+ contents: read
19
23
 
20
24
  jobs:
21
25
  release:
@@ -46,9 +50,14 @@ jobs:
46
50
  node-version: '20'
47
51
  cache: 'npm'
48
52
 
53
+ # Ensure npm 11.5.1 or later is installed
54
+ - name: Update npm
55
+ run: npm install -g npm@latest
56
+
49
57
  - name: Setup git
50
58
  run: |
51
59
  git config user.name "github-actions"
60
+ git config user.email "technik@kununu.com"
52
61
 
53
62
  - name: Install Packages
54
63
  run: npm ci
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "@kununu/stylelint-config",
3
- "version": "4.5.5",
3
+ "version": "4.5.6",
4
4
  "description": "kununu's stylelint config",
5
5
  "author": "kununu",
6
6
  "license": "ISC",
7
- "repository": "kununu/stylelint-config",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/kununu/stylelint-config.git"
10
+ },
8
11
  "engines": {
9
12
  "node": ">= 20.x.x",
10
13
  "npm": ">= 10.x.x"