eslint-plugin-primer-react 7.1.0-rc.8f87c4b → 8.0.0-rc.07c367d

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.
@@ -12,7 +12,7 @@ jobs:
12
12
  PROJECT_ID: 4503
13
13
  steps:
14
14
  - id: get-primer-access-token
15
- uses: actions/create-github-app-token@v1
15
+ uses: actions/create-github-app-token@v2
16
16
  with:
17
17
  app-id: ${{ vars.PRIMER_ISSUE_TRIAGE_APP_ID }}
18
18
  private-key: ${{ secrets.PRIMER_ISSUE_TRIAGE_APP_PRIVATE_KEY }}
@@ -22,7 +22,7 @@ jobs:
22
22
  env:
23
23
  GH_TOKEN: ${{ steps.get-primer-access-token.outputs.token }}
24
24
  - id: get-github-access-token
25
- uses: actions/create-github-app-token@v1
25
+ uses: actions/create-github-app-token@v2
26
26
  with:
27
27
  app-id: ${{ vars.PRIMER_ISSUE_TRIAGE_APP_ID_FOR_GITHUB }}
28
28
  private-key: ${{ secrets.PRIMER_ISSUE_TRIAGE_APP_PRIVATE_KEY_FOR_GITHUB }}
@@ -13,7 +13,7 @@ jobs:
13
13
  - name: Use Node.js
14
14
  uses: actions/setup-node@v4
15
15
  with:
16
- node-version: 18
16
+ node-version: 20
17
17
  cache: 'npm'
18
18
  - run: npm ci
19
19
  - run: npm run format:check
@@ -25,7 +25,7 @@ jobs:
25
25
  - name: Use Node.js
26
26
  uses: actions/setup-node@v4
27
27
  with:
28
- node-version: 18
28
+ node-version: 20
29
29
  cache: 'npm'
30
30
  - run: npm ci
31
31
  - run: npm test
@@ -37,7 +37,7 @@ jobs:
37
37
  - name: Use Node.js
38
38
  uses: actions/setup-node@v4
39
39
  with:
40
- node-version: 18
40
+ node-version: 20
41
41
  cache: 'npm'
42
42
  - run: npm ci
43
43
  - run: npm run lint
@@ -17,7 +17,7 @@ jobs:
17
17
  - name: Set up Node.js
18
18
  uses: actions/setup-node@v4
19
19
  with:
20
- node-version: 14
20
+ node-version: 20
21
21
 
22
22
  - name: Install dependencies
23
23
  run: npm ci
@@ -23,7 +23,7 @@ jobs:
23
23
  - name: Set up Node.js
24
24
  uses: actions/setup-node@v4
25
25
  with:
26
- node-version: 14.x
26
+ node-version: 20
27
27
 
28
28
  - name: Install dependencies
29
29
  run: npm ci
@@ -19,7 +19,7 @@ jobs:
19
19
  - name: Set up Node.js
20
20
  uses: actions/setup-node@v4
21
21
  with:
22
- node-version: 14.x
22
+ node-version: 20
23
23
 
24
24
  - name: Install dependencies
25
25
  run: npm ci
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- v18
1
+ v20
package/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # eslint-plugin-primer-react
2
2
 
3
- ## 7.1.0
3
+ ## 8.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - [#380](https://github.com/primer/eslint-plugin-primer-react/pull/380) [`d42d5c0`](https://github.com/primer/eslint-plugin-primer-react/commit/d42d5c03a0e7df44efeed84baff2eca95af05113) Thanks [@copilot-swe-agent](https://github.com/apps/copilot-swe-agent)! - Update repository to Node.js v20
4
8
 
5
9
  ### Minor Changes
6
10