Skip to content

Commit f7a3552

Browse files
authored
Merge pull request #337 from smartlyio/VLCN-3125
update node version & add renovate config
2 parents 950d665 + f8e4c46 commit f7a3552

6 files changed

Lines changed: 56 additions & 26 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-24.04
88
steps:
99
- uses: actions/checkout@v5
10-
- name: Set Node.js 20.x
10+
- name: Set Node.js version
1111
uses: actions/setup-node@v6
1212
with:
13-
node-version: 20.x
13+
node-version: 24.x
1414
- name: "Install"
1515
run: |
1616
npm ci
@@ -32,10 +32,10 @@ jobs:
3232
runs-on: ubuntu-24.04
3333
steps:
3434
- uses: actions/checkout@v5
35-
- name: Set Node.js 20.x
35+
- name: Set Node.js version
3636
uses: actions/setup-node@v6
3737
with:
38-
node-version: 20.x
38+
node-version: 24.x
3939
- name: "Build action for test"
4040
run: |
4141
npm ci

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.18.3
1+
24.11.0

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ outputs:
1313
size:
1414
description: "Size in bytes of the full build bundle"
1515
runs:
16-
using: 'node20'
16+
using: 'node24'
1717
main: 'dist/index.js'

package-lock.json

Lines changed: 37 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"cheerio": "1.0.0"
3131
},
3232
"devDependencies": {
33-
"@types/node": "20.17.23",
33+
"@types/node": "^24.11.0",
3434
"@typescript-eslint/parser": "7.18.0",
3535
"@vercel/ncc": "0.38.1",
3636
"eslint": "8.57.1",

renovate.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,18 @@
6060
"matchDepTypes": ["devDependencies"],
6161
"matchUpdateTypes": ["major"],
6262
"labels": ["patch", "renovate-deps"]
63+
},
64+
{
65+
"matchDepTypes": ["devDependencies"],
66+
"matchUpdateTypes": ["patch"],
67+
"labels": ["no release"],
68+
"automerge": true,
69+
"matchPackageNames": ["@types{/,}**"]
70+
},
71+
{
72+
"matchUpdateTypes": ["pin", "pinDigest"],
73+
"minimumReleaseAge": null,
74+
"automerge": true
6375
}
6476
],
6577
"github-actions": {

0 commit comments

Comments
 (0)