@kununu/stylelint-config 4.2.6 → 4.2.8

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.
@@ -22,11 +22,23 @@ jobs:
22
22
  runs-on: ubuntu-latest
23
23
 
24
24
  steps:
25
+ - name: Generate GitHub App Token
26
+ id: generate_token
27
+ env:
28
+ GITHUB_APP_ID: ${{ secrets.GH_APPS_APP_ID }}
29
+ GITHUB_INST_ID: ${{ secrets.GH_APPS_INSTALLATION_ID }}
30
+ GITHUB_KEY_VALUE: ${{ secrets.GH_APPS_PRIVATE_KEY }}
31
+ run: |
32
+ GO_GITHUB_VERSION="1.0.1"
33
+ wget -O ghapps https://github.com/kununu/go-github/releases/download/v${GO_GITHUB_VERSION}/go-github_${GO_GITHUB_VERSION}_linux_amd64 && chmod +x ghapps
34
+
35
+ echo "GH_APPS_TOKEN=$(./ghapps)" >> $GITHUB_ENV
36
+
25
37
  - name: Checkout Source
26
38
  uses: actions/checkout@v3
27
39
  with:
28
40
  fetch-depth: 0
29
- token: ${{ secrets.KUNUNU_BOT_GITHUB_TOKEN }}
41
+ token: ${{ env.GH_APPS_TOKEN }}
30
42
 
31
43
  - name: Setup Node
32
44
  uses: actions/setup-node@v3
@@ -36,8 +48,7 @@ jobs:
36
48
 
37
49
  - name: Setup git
38
50
  run: |
39
- git config user.name "kununu-bot"
40
- git config user.email "technik@kununu.com"
51
+ git config user.name "github-actions"
41
52
 
42
53
  - name: Install Packages
43
54
  run: npm ci
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kununu/stylelint-config",
3
- "version": "4.2.6",
3
+ "version": "4.2.8",
4
4
  "description": "kununu's stylelint config",
5
5
  "author": "kununu",
6
6
  "license": "ISC",
@@ -23,11 +23,11 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "prettier": "3.3.3",
26
- "stylelint": "16.9.0",
26
+ "stylelint": "16.10.0",
27
27
  "stylelint-semantic-groups": "1.2.1",
28
28
  "stylelint-config-standard-scss": "13.1.0",
29
29
  "stylelint-order": "6.0.4",
30
30
  "stylelint-prettier": "5.0.2",
31
- "stylelint-scss": "6.7.0"
31
+ "stylelint-scss": "6.8.0"
32
32
  }
33
33
  }