Skip to content

Commit d0c81af

Browse files
chore: upgrade deps. (#101)
1 parent d394481 commit d0c81af

10 files changed

Lines changed: 1715 additions & 913 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest, windows-latest]
18-
version: ['22.21.1', '24.11.1']
18+
version: ['22.21.1', '24.16.0', '26.2.0']
1919
runs-on: ${{ matrix.os }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v6.0.1
22+
uses: actions/checkout@v6.0.2
2323
- name: Setup Node
24-
uses: actions/setup-node@v6.2.0
24+
uses: actions/setup-node@v6.4.0
2525
with:
2626
node-version: ${{ matrix.version }}
2727
- name: Install Dependencies
2828
run: npm ci
2929
- name: Save error log
30-
uses: actions/upload-artifact@v6.0.0
30+
uses: actions/upload-artifact@v7.0.1
3131
if: ${{ failure() }}
3232
with:
3333
name: npm-debug-log-${{ hashFiles('package-lock.json') }}
@@ -39,7 +39,7 @@ jobs:
3939
- name: Test
4040
run: npm test
4141
- name: Report Coverage
42-
uses: codecov/codecov-action@v5.5.2
42+
uses: codecov/codecov-action@v6.0.1
4343
with:
4444
token: ${{ secrets.CODECOV_TOKEN }}
4545
- name: Size Check

.github/workflows/deploy-demo.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v6.0.1
23+
uses: actions/checkout@v6.0.2
2424
- name: Package ESM demo
2525
run: |
2626
mkdir -p build
2727
cp examples/esm-demo.html build/index.html
2828
- name: Setup Pages
29-
uses: actions/configure-pages@v5.0.0
29+
uses: actions/configure-pages@v6.0.0
3030
- name: Upload artifact
31-
uses: actions/upload-pages-artifact@v3.0.1
31+
uses: actions/upload-pages-artifact@v5.0.0
3232
with:
3333
path: build
3434
- name: Deploy to GitHub Pages
3535
id: deployment
36-
uses: actions/deploy-pages@v4.0.5
36+
uses: actions/deploy-pages@v5.0.0

.github/workflows/playwright.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
timeout-minutes: 45
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v6.0.1
20+
uses: actions/checkout@v6.0.2
2121
- name: Setup Node
22-
uses: actions/setup-node@v6.2.0
22+
uses: actions/setup-node@v6.4.0
2323
with:
24-
node-version: '24.11.1'
24+
node-version: '24.16.0'
2525
- name: Install dependencies
2626
run: npm ci
2727
- name: Install Playwright Browsers

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,17 @@ jobs:
3232
fi
3333
echo "ref=$ref" >> "$GITHUB_OUTPUT"
3434
- name: Checkout
35-
uses: actions/checkout@v6.0.1
35+
uses: actions/checkout@v6.0.2
3636
with:
3737
ref: ${{ steps.publish-ref.outputs.ref }}
3838
- name: Setup Node
39-
uses: actions/setup-node@v6.2.0
39+
uses: actions/setup-node@v6.4.0
4040
with:
41-
node-version: '24.11.1'
41+
node-version: '26.2.0'
4242
- name: Install Dependencies
4343
run: npm ci
4444
- name: Save error log
45-
uses: actions/upload-artifact@v6.0.0
45+
uses: actions/upload-artifact@v7.0.1
4646
if: ${{ failure() }}
4747
with:
4848
name: npm-debug-log-${{ hashFiles('package-lock.json') }}

examples/esm-demo.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
99
<link
1010
rel="modulepreload"
11-
href="https://cdn.jsdelivr.net/npm/@knighted/jsx@1.7.6/lite/+esm"
11+
href="https://cdn.jsdelivr.net/npm/@knighted/jsx@1.14.0/lite/+esm"
1212
/>
1313
<link
1414
rel="modulepreload"
15-
href="https://cdn.jsdelivr.net/npm/@knighted/jsx@1.7.6/react/+esm"
15+
href="https://cdn.jsdelivr.net/npm/@knighted/jsx@1.14.0/react/+esm"
1616
/>
1717
<link rel="modulepreload" href="https://cdn.jsdelivr.net/npm/react@19.2.4/+esm" />
1818
<link
@@ -469,8 +469,8 @@ <h1>@knighted/jsx + CDN</h1>
469469
</main>
470470

471471
<script type="module">
472-
import { jsx } from 'https://cdn.jsdelivr.net/npm/@knighted/jsx@1.7.6/lite/+esm'
473-
import { reactJsx } from 'https://cdn.jsdelivr.net/npm/@knighted/jsx@1.7.6/react/+esm'
472+
import { jsx } from 'https://cdn.jsdelivr.net/npm/@knighted/jsx@1.14.0/lite/+esm'
473+
import { reactJsx } from 'https://cdn.jsdelivr.net/npm/@knighted/jsx@1.14.0/react/+esm'
474474
import {
475475
useEffect,
476476
useRef,

0 commit comments

Comments
 (0)