@kununu/stylelint-config 4.5.5 → 4.5.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.
@@ -14,8 +14,11 @@ 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
+
19
+ permissions:
20
+ id-token: write # Required for OIDC
21
+ contents: write
19
22
 
20
23
  jobs:
21
24
  release:
@@ -46,9 +49,14 @@ jobs:
46
49
  node-version: '20'
47
50
  cache: 'npm'
48
51
 
52
+ # Ensure npm 11.5.1 or later is installed
53
+ - name: Update npm
54
+ run: npm install -g npm@latest
55
+
49
56
  - name: Setup git
50
57
  run: |
51
58
  git config user.name "github-actions"
59
+ git config user.email "technik@kununu.com"
52
60
 
53
61
  - name: Install Packages
54
62
  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.7",
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"