Skip to content

Commit 5aeafe3

Browse files
committed
fix: update dependencies and enhance Vite configuration
- Bump @typescript/native-preview from 7.0.0-dev.20260629.1 to 7.0.0-dev.20260630.1 - Upgrade vite from 8.0.16 to 8.1.2 in package.json and esbuild-plugins/package.json - Add @docsearch/react dependency version 3.9.0 in vitepress configuration - Modify Vite configuration in vite-utils.ts to set JSX runtime to "classic" for compatibility with existing code Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
1 parent d78ca60 commit 5aeafe3

7 files changed

Lines changed: 306 additions & 195 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,21 @@ permissions:
1212
contents: write
1313
pull-requests: write
1414

15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: true
18+
1519
name: PR Testing
1620

1721
jobs:
1822
build:
1923
runs-on: ubuntu-latest
2024
steps:
2125
- name: Checkout Sources
22-
uses: actions/checkout@v6
26+
uses: actions/checkout@v4
2327

2428
- name: Install NodeJS
25-
uses: actions/setup-node@v6
29+
uses: actions/setup-node@v4
2630
with:
2731
node-version: 22
2832
registry-url: "https://registry.npmjs.org"
@@ -37,7 +41,7 @@ jobs:
3741
npm run build
3842
3943
- name: Upload build artifacts
40-
uses: actions/upload-artifact@v7
44+
uses: actions/upload-artifact@v4
4145
with:
4246
name: build-output
4347
path: |
@@ -46,18 +50,18 @@ jobs:
4650
4751
- name: Upload error logs
4852
if: ${{ failure() || cancelled() }}
49-
uses: actions/upload-artifact@v7
53+
uses: actions/upload-artifact@v4
5054
with:
5155
name: all-logs
5256
path: ./**/*.log
5357
lint:
5458
runs-on: ubuntu-latest
5559
steps:
5660
- name: Checkout Sources
57-
uses: actions/checkout@v6
61+
uses: actions/checkout@v4
5862

5963
- name: Install NodeJS
60-
uses: actions/setup-node@v6
64+
uses: actions/setup-node@v4
6165
with:
6266
node-version: 22
6367
registry-url: "https://registry.npmjs.org"
@@ -76,10 +80,10 @@ jobs:
7680
runs-on: ubuntu-latest
7781
steps:
7882
- name: Checkout Sources
79-
uses: actions/checkout@v6
83+
uses: actions/checkout@v4
8084

8185
- name: Install NodeJS
82-
uses: actions/setup-node@v6
86+
uses: actions/setup-node@v4
8387
with:
8488
node-version: 22
8589
registry-url: "https://registry.npmjs.org"
@@ -90,7 +94,7 @@ jobs:
9094
npm ci
9195
9296
- name: Download build artifacts
93-
uses: actions/download-artifact@v8
97+
uses: actions/download-artifact@v4
9498
with:
9599
name: build-output
96100
path: packages
@@ -120,7 +124,7 @@ jobs:
120124
121125
- name: Upload error logs
122126
if: ${{ failure() || cancelled() }}
123-
uses: actions/upload-artifact@v7
127+
uses: actions/upload-artifact@v4
124128
with:
125129
name: all-logs
126130
path: ./**/*.log

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ on:
2020
schedule:
2121
- cron: "34 1 * * 2"
2222

23+
concurrency:
24+
group: ${{ github.workflow }}-${{ github.ref }}
25+
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
26+
2327
jobs:
2428
analyze:
2529
name: Analyze

.github/workflows/release-please.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ permissions:
99
pull-requests: write
1010
issues: write
1111

12+
concurrency:
13+
group: ${{ github.workflow }}-${{ github.ref }}
14+
cancel-in-progress: false
15+
1216
name: release-please
1317

1418
jobs:
@@ -49,12 +53,12 @@ jobs:
4953
echo "version=${TAG_NAME##*-v}" >> $GITHUB_OUTPUT
5054
echo "package_name=${RELEASE_NAME%:*}" >> $GITHUB_OUTPUT
5155
52-
- uses: actions/checkout@v6
56+
- uses: actions/checkout@v4
5357
with:
5458
ref: ${{ steps.event_details.outputs.tag_name }}
5559

5660
- name: Install NodeJS
57-
uses: actions/setup-node@v6
61+
uses: actions/setup-node@v4
5862
with:
5963
node-version: 22
6064
registry-url: "https://registry.npmjs.org"
@@ -70,7 +74,7 @@ jobs:
7074
7175
- name: Upload error logs
7276
if: ${{ failure() || cancelled() }}
73-
uses: actions/upload-artifact@v7
77+
uses: actions/upload-artifact@v4
7478
with:
7579
name: all-logs
7680
path: ./**/*.log
@@ -84,7 +88,7 @@ jobs:
8488
pull-requests: write
8589
repository-projects: read
8690
steps:
87-
- uses: actions/checkout@v6
91+
- uses: actions/checkout@v4
8892
- name: Add label to PR
8993
env:
9094
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)