diff --git a/.copier-answers.yaml b/.copier-answers.yaml index c5b2eb7..d492387 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 2c98247 +_commit: fa27c8d _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: rustjswasm diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 16f15b1..c6e6a2b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -35,7 +35,7 @@ jobs: node-version: [20.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-ext/python/setup@main with: diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 52abc4a..5dc082d 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -11,7 +11,7 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-ext/python/setup@main - uses: actions-ext/rust/setup@main - uses: actions-ext/node/setup@main diff --git a/.github/workflows/wiki.yaml b/.github/workflows/wiki.yaml index 8de232b..e0a4608 100644 --- a/.github/workflows/wiki.yaml +++ b/.github/workflows/wiki.yaml @@ -20,7 +20,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: cp README.md docs/wiki/Home.md - uses: Andrew-Chen-Wang/github-wiki-action@v5 with: diff --git a/rust/Makefile b/rust/Makefile index 16d2d73..4450369 100644 --- a/rust/Makefile +++ b/rust/Makefile @@ -3,8 +3,8 @@ requirements: ## install required dev dependencies rustup component add rustfmt rustup component add clippy - cargo install cargo-nextest - cargo install cargo-llvm-cov + cargo install -f cargo-nextest + cargo install -f cargo-llvm-cov cargo install -f wasm-bindgen-cli rustup target add wasm32-unknown-unknown