Skip to content

Commit 1f95da0

Browse files
committed
Merge remote-tracking branch 'origin/main' into ian/nested-workflow
2 parents 88b6b33 + 4e03548 commit 1f95da0

File tree

4 files changed

+58
-39
lines changed

4 files changed

+58
-39
lines changed

.github/workflows/node.js.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
11+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1212
- name: Use Node.js
13-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
13+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
1414
- run: npm i
1515
- run: npm run build
1616
- run: npx pkg-pr-new publish

package-lock.json

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

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,19 @@
6363
"@convex-dev/workpool": "0.2.19",
6464
"@edge-runtime/vm": "5.0.0",
6565
"@eslint/eslintrc": "3.3.1",
66-
"@eslint/js": "9.37.0",
67-
"@types/node": "22.18.8",
66+
"@eslint/js": "9.38.0",
67+
"@types/node": "22.18.12",
6868
"@typescript-eslint/eslint-plugin": "8.40.0",
6969
"@typescript-eslint/parser": "8.40.0",
7070
"chokidar-cli": "3.0.0",
7171
"convex": "1.28.0",
7272
"convex-helpers": "0.1.102",
7373
"convex-test": "0.0.38",
7474
"cpy-cli": "6.0.0",
75-
"eslint": "9.37.0",
75+
"eslint": "9.38.0",
7676
"globals": "16.4.0",
7777
"npm-run-all2": "8.0.4",
78-
"openai": "6.2.0",
78+
"openai": "6.6.0",
7979
"pkg-pr-new": "0.0.60",
8080
"prettier": "3.6.2",
8181
"typescript": "5.9.3",

renovate.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:best-practices"],
4+
"schedule": ["* 0-4 * * 1"],
5+
"timezone": "America/Los_Angeles",
6+
"prConcurrentLimit": 1,
37
"packageRules": [
48
{
9+
"groupName": "Routine updates",
510
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
611
"automerge": true
712
},
13+
{
14+
"groupName": "Major updates",
15+
"matchUpdateTypes": ["major"],
16+
"automerge": false
17+
},
818
{
919
"matchDepTypes": ["devDependencies"],
1020
"automerge": true
1121
}
12-
],
13-
"extends": ["config:best-practices"]
22+
]
1423
}

0 commit comments

Comments
 (0)