Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump alorel-actions/cargo from 1 to 2 #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/reuse-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/reuse-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand All @@ -66,21 +66,21 @@ 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
local: true
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
Expand All @@ -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}}
Expand Down