From f3e3444130159fc59dfbc57ffcf06c048c2c8db9 Mon Sep 17 00:00:00 2001 From: Vitaly Slobodin Date: Wed, 28 May 2025 21:22:49 +0200 Subject: [PATCH] Update GitHub Actions to use wasm32-wasip2 target --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 054fdbc..8b4c85b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - uses: actions-rust-lang/setup-rust-toolchain@v1 with: toolchain: stable - target: wasm32-wasip1 + target: wasm32-wasip2 override: true components: rustfmt, clippy - name: Lint (clippy) @@ -45,14 +45,14 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.86 - target: wasm32-wasip1 + toolchain: 1.87 + target: wasm32-wasip2 override: true - name: Build extension uses: actions-rs/cargo@v1 with: command: build - args: --target wasm32-wasip1 --all-features + args: --target wasm32-wasip2 --all-features - name: Install latest nextest release uses: taiki-e/install-action@nextest - name: Test with latest nextest release