Skip to content

Commit 561bb9d

Browse files
authored
renovate cleanup (#297)
1 parent cb74ce4 commit 561bb9d

9 files changed

Lines changed: 10 additions & 26 deletions

File tree

.github/workflows/ci-vs-extension.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ jobs:
3737

3838
- name: Setup pnpm
3939
uses: pnpm/action-setup@v4
40-
with:
41-
version: 10.17.1
4240

4341
- name: Get pnpm store directory
4442
shell: bash

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ jobs:
3838

3939
- name: Setup pnpm
4040
uses: pnpm/action-setup@v4
41-
with:
42-
version: 10.17.1
4341

4442
- name: Get pnpm store directory
4543
shell: bash

.github/workflows/deploy-docs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@ jobs:
2525

2626
- name: Setup pnpm
2727
uses: pnpm/action-setup@v4
28-
with:
29-
version: 10.17.1
3028

3129
- name: Setup Node.js
3230
uses: actions/setup-node@v4

.github/workflows/docs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ jobs:
2929

3030
- name: Setup pnpm
3131
uses: pnpm/action-setup@v4
32-
with:
33-
version: 10.17.1
3432

3533
- name: Get pnpm store directory
3634
shell: bash

.github/workflows/e2e-shell-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ jobs:
4848
- name: Setup pnpm
4949
if: steps.check-secrets.outputs.has-secrets == 'true'
5050
uses: pnpm/action-setup@v4
51-
with:
52-
version: 10.17.1
5351

5452
- name: Get pnpm store directory
5553
if: steps.check-secrets.outputs.has-secrets == 'true'

.github/workflows/e2e-tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ jobs:
7575
fi
7676
- name: Setup pnpm
7777
uses: pnpm/action-setup@v4
78-
with:
79-
version: 10.17.1
8078

8179
- name: Get pnpm store directory
8280
shell: bash
@@ -90,7 +88,7 @@ jobs:
9088
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
9189
restore-keys: |
9290
${{ runner.os }}-pnpm-store-
93-
91+
9492
- name: Install dependencies
9593
if: steps.check-secrets.outputs.has-secrets == 'true'
9694
run: pnpm install --frozen-lockfile
@@ -178,8 +176,6 @@ jobs:
178176
node-version: '22.x'
179177
- name: Setup pnpm
180178
uses: pnpm/action-setup@v4
181-
with:
182-
version: 10.17.1
183179
- name: Get pnpm store directory
184180
id: pnpm-store
185181
shell: bash

.github/workflows/preview-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ jobs:
2626

2727
- name: Setup pnpm
2828
uses: pnpm/action-setup@v4
29-
with:
30-
version: 10.17.1
3129

3230
- name: Get pnpm store directory
3331
shell: bash

.github/workflows/renovate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Renovate
22

33
on:
4-
# Run every hour
4+
# Run daily at 5am UTC (matches renovate.json Monday schedule window)
55
schedule:
6-
- cron: '0 * * * *'
6+
- cron: '0 5 * * *'
77
# Allow manual trigger
88
workflow_dispatch:
99
inputs:
@@ -29,7 +29,7 @@ jobs:
2929
uses: renovatebot/github-action@v41.0.21
3030
with:
3131
configurationFile: renovate.json
32-
token: ${{ secrets.RENOVATE_TOKEN }}
32+
token: ${{ secrets.GITHUB_TOKEN }}
3333
env:
3434
LOG_LEVEL: info
3535
RENOVATE_REPOSITORIES: ${{ github.repository }}

renovate.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
44
"config:recommended",
5-
":dependencyDashboard",
65
":semanticCommits",
76
"group:allNonMajor"
87
],
98
"vulnerabilityAlerts": {
10-
"enabled": false
9+
"enabled": true,
10+
"labels": ["security"],
11+
"schedule": ["at any time"]
1112
},
12-
"gitAuthor": "Charles Lavery <clavery@salesforce.com>",
1313
"labels": ["dependencies"],
1414
"rangeStrategy": "bump",
1515
"major": {
@@ -23,17 +23,17 @@
2323
},
2424
{
2525
"description": "Group TypeScript ecosystem",
26-
"matchPackagePatterns": ["^typescript", "^@types/"],
26+
"matchPackageNames": ["/^typescript/", "/^@types\\//"],
2727
"groupName": "typescript"
2828
},
2929
{
3030
"description": "Group ESLint ecosystem",
31-
"matchPackagePatterns": ["eslint"],
31+
"matchPackageNames": ["/eslint/"],
3232
"groupName": "eslint"
3333
},
3434
{
3535
"description": "Group testing tools",
36-
"matchPackagePatterns": ["mocha", "chai", "sinon", "c8", "msw"],
36+
"matchPackageNames": ["/mocha/", "/chai/", "/sinon/", "/c8/", "/msw/"],
3737
"groupName": "testing"
3838
},
3939
{

0 commit comments

Comments
 (0)