diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd52a5b..c70e10e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,17 +25,15 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} - - name: Setup node:${{ matrix.node-version }} - uses: actions/setup-node@v2 + - name: Setup node ${{ matrix.node-version }} + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@v1 with: toolchain: nightly - profile: minimal - override: true - name: Install wasm-pack run: | @@ -64,4 +62,4 @@ jobs: run: yarn lerna exec 'prettier --check .' - name: Unit Test - run: yarn lerna run test \ No newline at end of file + run: yarn lerna run test diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index dd046e2..cb8ff2b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Node uses: actions/setup-node@v3 @@ -23,11 +23,9 @@ jobs: node-version: 18 - name: Install Rust - uses: actions-rs/toolchain@v1 + uses: dtolnay/rust-toolchain@v1 with: toolchain: nightly - profile: minimal - override: true - name: Install wasm-pack run: |