Skip to content

Commit 0a422ea

Browse files
authored
Merge branch 'main' into fix/4742-checkbox-label-duplication
2 parents 8d45ac4 + f626123 commit 0a422ea

File tree

5 files changed

+67
-124
lines changed

5 files changed

+67
-124
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v5
1818
- name: Use Node.js ${{ matrix.node-version }}
19-
uses: actions/setup-node@v5
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222
cache: 'npm'
@@ -47,12 +47,12 @@ jobs:
4747
NODE_OPTIONS: --max_old_space_size=4096
4848

4949
- if: matrix.node-version == '22.x'
50-
uses: actions/upload-artifact@v4
50+
uses: actions/upload-artifact@v5
5151
with:
5252
name: playground
5353
path: packages/playground/dist
5454
- if: matrix.node-version == '22.x'
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v5
5656
with:
5757
name: docs
5858
path: packages/docs/build
@@ -64,12 +64,12 @@ jobs:
6464
needs: [build]
6565
steps:
6666
- name: Download built playground
67-
uses: actions/download-artifact@v5
67+
uses: actions/download-artifact@v6
6868
with:
6969
name: playground
7070
path: dist
7171
- name: Download built docs
72-
uses: actions/download-artifact@v5
72+
uses: actions/download-artifact@v6
7373
with:
7474
name: docs
7575
path: dist/docs

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060

6161
# Initializes the CodeQL tools for scanning.
6262
- name: Initialize CodeQL
63-
uses: github/codeql-action/init@v3
63+
uses: github/codeql-action/init@v4
6464
with:
6565
languages: ${{ matrix.language }}
6666
build-mode: ${{ matrix.build-mode }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v5
1212
- name: Use Node.js 22.x
13-
uses: actions/setup-node@v5
13+
uses: actions/setup-node@v6
1414
with:
1515
node-version: 22.x
1616
cache: 'npm'

package-lock.json

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

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"eslint": "^8.57.1",
8989
"html": "^1.0.0",
9090
"jsdom": "^27.0.1",
91-
"mocha": "^10.8.2",
91+
"mocha": "^11.7.4",
9292
"react-portal": "^4.3.0",
9393
"sinon": "^9.2.4"
9494
},

0 commit comments

Comments
 (0)