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

ci: Update alorel-actions/cargo #44

Merged
merged 1 commit into from
Oct 27, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release-crate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Checkout

- name: Init toolchain
uses: alorel-actions/cargo/init@v1
uses: alorel-actions/cargo/init@v2
with:
cache-prefix: release

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ jobs:
uses: ./.github/actions/changelog

- name: Init toolchain
uses: alorel-actions/cargo/init@v1
uses: alorel-actions/cargo/init@v2
with:
cache-prefix: release

- name: cargo-bump
uses: alorel-actions/cargo/bump@v1
uses: alorel-actions/cargo/bump@v2
with:
release-type: ${{ steps.changelog.outputs.release-type }}

- name: Git release
uses: alorel-actions/cargo/release-git@v1
uses: alorel-actions/cargo/release-git@v2
with:
version: ${{ steps.changelog.outputs.version }}
changelog: ${{ steps.changelog.outputs.changelog }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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: nightly-2024-10-18
Expand All @@ -61,7 +61,7 @@ jobs:
uses: actions/checkout@v4

- name: Init toolchain
uses: alorel-actions/cargo/init@v1
uses: alorel-actions/cargo/init@v2
id: toolchain
with:
cache-prefix: doctest
Expand All @@ -78,7 +78,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 Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v4

- name: Init toolchain
uses: alorel-actions/cargo/init@v1
uses: alorel-actions/cargo/init@v2
with:
toolchain: ${{ inputs.toolchain }}
cache-prefix: test
Expand Down