Skip to content

Commit 1dc946d

Browse files
authored
Bump version to 1.6.9 and disable Windows workflow (#864)
1 parent 4ddcd42 commit 1dc946d

11 files changed

Lines changed: 933 additions & 1248 deletions

File tree

.github/workflows/build-macos.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,18 @@ jobs:
3737
with:
3838
node-version: 25
3939

40-
- uses: pnpm/action-setup@v5
40+
- uses: pnpm/action-setup@v6
4141
with:
4242
cache: true
4343
version: 10
4444

45-
- name: Install deps
46-
run: pnpm install --frozen-lockfile
45+
# Change to '--frozen-lockfile' once this gets fixed:
46+
# https://github.com/pnpm/action-setup/issues/40
47+
- name: Install Node dependencies
48+
run: pnpm install --no-frozen-lockfile
4749

48-
- uses: dtolnay/rust-toolchain@stable
50+
- name: Install Rust stable
51+
uses: dtolnay/rust-toolchain@stable
4952
with:
5053
targets: aarch64-apple-darwin,x86_64-apple-darwin
5154

.github/workflows/lint.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030

3131
- uses: actions/setup-node@v6
3232
with:
33-
node-version: '24'
33+
node-version: 25
3434

35-
- uses: pnpm/action-setup@v5
35+
- uses: pnpm/action-setup@v6
3636
with:
3737
version: 10
3838
run_install: false
@@ -42,16 +42,18 @@ jobs:
4242
run: |
4343
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
4444
45-
- uses: actions/cache@v5
46-
name: Setup pnpm cache
45+
- name: Setup pnpm cache
46+
uses: actions/cache@v5
4747
with:
4848
path: ${{ env.STORE_PATH }}
4949
key: ${{ runner.os }}-pnpm-lint-store-${{ hashFiles('**/pnpm-lock.yaml') }}
5050
restore-keys: |
5151
${{ runner.os }}-pnpm-lint-store-
5252
53-
- name: Install deps
54-
run: pnpm install --frozen-lockfile
53+
# Change to '--frozen-lockfile' once this gets fixed:
54+
# https://github.com/pnpm/action-setup/issues/40
55+
- name: Install Node dependencies
56+
run: pnpm install --no-frozen-lockfile
5557

5658
- name: Run Biome and Prettier Lint
5759
run: pnpm lint

0 commit comments

Comments
 (0)