Skip to content

Commit 96ad070

Browse files
committed
Upgrade treesitter
1 parent 4353aab commit 96ad070

File tree

10 files changed

+2443
-1926
lines changed

10 files changed

+2443
-1926
lines changed

Diff for: .github/workflows/deploy.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ jobs:
1414
- name: Install shellcheck and shfmt (used for testing)
1515
run: sudo apt-get install -y shellcheck shfmt
1616

17-
- uses: pnpm/action-setup@v2
17+
- uses: pnpm/action-setup@v4
1818
with:
19-
version: 8
19+
version: 9
2020

2121
- uses: actions/setup-node@v4
2222
with:
2323
node-version: 20
2424
registry-url: https://registry.npmjs.org/
25+
cache: "pnpm"
2526

2627
- run: |
2728
git config --local user.email "[email protected]"

Diff for: .github/workflows/upgrade-tree-sitter.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14-
- uses: pnpm/action-setup@v2
14+
- uses: pnpm/action-setup@v4
1515
with:
16-
version: 8
16+
version: 9
1717

1818
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 20
2121
cache: "pnpm"
22-
cache-dependency-path: '**/pnpm-lock.yaml'
2322

2423
- run: pnpm install --frozen-lockfile
2524

Diff for: .github/workflows/verify.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,22 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [16.x, 18.x, 20.x]
12+
node-version: [18.x, 20.x]
1313

1414
steps:
1515
- uses: actions/checkout@v4
1616

1717
- name: Install shellcheck and shfmt (used for testing)
1818
run: sudo apt-get install -y shellcheck shfmt
1919

20-
- uses: pnpm/action-setup@v2
20+
- uses: pnpm/action-setup@v4
2121
with:
22-
version: 8
22+
version: 9
2323

2424
- name: Use Node.js ${{ matrix.node-version }}
2525
uses: actions/setup-node@v4
2626
with:
2727
cache: "pnpm"
28-
cache-dependency-path: '**/pnpm-lock.yaml'
2928
node-version: ${{ matrix.node-version }}
3029

3130
- run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)