diff --git a/.github/workflows/reuse-release.yml b/.github/workflows/reuse-release.yml index 25a012a..ab75eca 100644 --- a/.github/workflows/reuse-release.yml +++ b/.github/workflows/reuse-release.yml @@ -90,19 +90,19 @@ jobs: uses: alorel-actions/git-ident@v1 - name: Init toolchain - uses: alorel-actions/cargo/init@v1 + uses: alorel-actions/cargo/init@v2 id: toolchain with: cache-prefix: release toolchain: ${{ inputs.toolchain }} - name: cargo-bump - uses: alorel-actions/cargo/bump@v1 + uses: alorel-actions/cargo/bump@v2 with: release-type: ${{ needs.pre-release.outputs.release-type }} - name: Release on GitHub - uses: alorel-actions/cargo/release-git@v1 + uses: alorel-actions/cargo/release-git@v2 with: version: ${{ needs.pre-release.outputs.next-version }} changelog: ${{ needs.pre-release.outputs.changelog }} diff --git a/.github/workflows/reuse-test.yml b/.github/workflows/reuse-test.yml index cb1ad58..0610831 100644 --- a/.github/workflows/reuse-test.yml +++ b/.github/workflows/reuse-test.yml @@ -36,7 +36,7 @@ jobs: uses: actions/checkout@v4 - name: Init toolchain - uses: alorel-actions/cargo/init@v1 + uses: alorel-actions/cargo/init@v2 id: toolchain with: components: rustfmt,clippy @@ -53,7 +53,7 @@ jobs: run: cargo doc --workspace --no-deps && rm -rf target/doc - name: cargo-rdme - uses: alorel-actions/cargo/rdme@v1 + uses: alorel-actions/cargo/rdme@v2 with: no-fail-on-warnings: ${{ inputs.cargo-rdme-no-fail-on-warnings }} intralinks-strip-links: ${{ inputs.cargo-rdme-intralinks-strip-links }} @@ -66,7 +66,7 @@ jobs: uses: actions/checkout@v4 - name: Init toolchain - uses: alorel-actions/cargo/init@v1 + uses: alorel-actions/cargo/init@v2 with: toolchain: ${{ inputs.nightly-toolchain }} cache-prefix: test @@ -74,13 +74,13 @@ jobs: components: llvm-tools-preview - name: Examples & unit tests - uses: alorel-actions/cargo/llvm-cov@v1 + uses: alorel-actions/cargo/llvm-cov@v2 with: output: unit.lcov args: --lcov --examples --tests --workspace - name: Doc tests - uses: alorel-actions/cargo/llvm-cov@v1 + uses: alorel-actions/cargo/llvm-cov@v2 with: output: doc.lcov args: --lcov --doctests --workspace @@ -105,7 +105,7 @@ jobs: uses: actions/checkout@v4 - name: Init toolchain - uses: alorel-actions/cargo/init@v1 + uses: alorel-actions/cargo/init@v2 id: toolchain with: toolchain: ${{matrix.toolchain}}