@kununu/eslint-config 5.11.1 → 5.11.3

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.
@@ -15,7 +15,10 @@ on:
15
15
 
16
16
  env:
17
17
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
- NPM_TOKEN: ${{ secrets.NPM_AUTOMATION_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,13 @@ 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
49
55
  - name: Setup git
50
56
  run: |
51
57
  git config user.name "github-actions"
58
+ git config user.email "technik@kununu.com"
52
59
 
53
60
  - name: Install Packages
54
61
  run: npm ci
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@kununu/eslint-config",
3
- "version": "5.11.1",
3
+ "version": "5.11.3",
4
4
  "description": "kununu's ESLint config",
5
5
  "main": "index.js",
6
- "repository": "kununu/eslint-config",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/kununu/eslint-config.git"
9
+ },
7
10
  "keywords": [
8
11
  "eslint",
9
12
  "eslintconfig",
@@ -26,8 +29,8 @@
26
29
  },
27
30
  "homepage": "https://github.com/kununu/eslint-config#readme",
28
31
  "dependencies": {
29
- "@babel/core": "7.28.4",
30
- "@babel/eslint-parser": "7.28.4",
32
+ "@babel/core": "7.28.5",
33
+ "@babel/eslint-parser": "7.28.5",
31
34
  "@babel/eslint-plugin": "7.27.1",
32
35
  "@typescript-eslint/eslint-plugin": "7.18.0",
33
36
  "@typescript-eslint/parser": "7.18.0",