diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 23376f67..32f8ae72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,11 +29,11 @@ jobs: os: windows-2019 rust: stable steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install Rust - uses: hecrj/setup-rust-action@v1 + uses: dtolnay/rust-toolchain@master with: - rust-version: ${{ matrix.rust }} + toolchain: ${{ matrix.rust }} - name: Build System Info run: rustc --version - name: tests with default feature @@ -47,7 +47,7 @@ jobs: name: wasm runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh