Skip to content

Commit 48cd9db

Browse files
committed
.github/workflows: Use node 24.
1 parent 719e587 commit 48cd9db

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish-ide-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
poetry run python -m pip install --upgrade pip
3737
poetry run python -m pip install --upgrade setuptools
3838
poetry install --only=doc
39-
- uses: actions/setup-node@v6
39+
- uses: actions/setup-node@v4
4040
with:
41-
node-version: '22.x'
41+
node-version: '24'
4242
registry-url: 'https://registry.npmjs.org'
4343
- run: npm version --no-git-tag-version "$NPM_VERSION"
4444
working-directory: npm/ide-docs

.github/workflows/publish-jedi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
- name: Set pybricks-jedi version
3030
run: poetry version "$VERSION"
3131
working-directory: jedi
32-
- uses: actions/setup-node@v6
32+
- uses: actions/setup-node@v4
3333
with:
34-
node-version: '22.x'
34+
node-version: '24'
3535
registry-url: 'https://registry.npmjs.org'
3636
- run: ./build.py "$NPM_VERSION"
3737
working-directory: npm/jedi

npm/ide-docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Special build of Pybricks API docs for embedding in an IDE.",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/pybricks/pybricks-api",
7+
"url": "git+https://github.com/pybricks/pybricks-api.git",
88
"directory": "npm/ide-docs"
99
},
1010
"publishConfig": {

npm/images/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"license": "MIT",
1919
"repository": {
2020
"type": "git",
21-
"url": "https://github.com/pybricks/pybricks-api",
21+
"url": "git+https://github.com/pybricks/pybricks-api.git",
2222
"directory": "npm/images",
2323
},
2424
"publishConfig": {"registry": "https://registry.npmjs.org", "access": "public"},

npm/jedi/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"description": "Binary distribution of pybricks-jedi Python package and dependencies for use with Pyodide.",
2525
"repository": {
2626
"type": "git",
27-
"url": "https://github.com/pybricks/pybricks-api",
27+
"url": "git+https://github.com/pybricks/pybricks-api.git",
2828
"directory": "npm/jedi",
2929
},
3030
"publishConfig": {"registry": "https://registry.npmjs.org", "access": "public"},

0 commit comments

Comments
 (0)