Skip to content

Commit 64abc74

Browse files
authored
Update parity-publish to v0.10.4 (#7193)
The changes from v0.10.3 are only related to dependencies version. This should fix some failing CIs. This PR also updates the Rust cache version in CI.
1 parent be2404c commit 64abc74

4 files changed

+9
-7
lines changed

.github/workflows/check-semver.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
- name: install parity-publish
8282
if: ${{ !contains(github.event.pull_request.labels.*.name, 'R0-silent') }}
8383
# Set the target dir to cache the build.
84-
run: CARGO_TARGET_DIR=./target/ cargo install [email protected].3 --locked -q
84+
run: CARGO_TARGET_DIR=./target/ cargo install [email protected].4 --locked -q
8585

8686
- name: check semver
8787
if: ${{ !contains(github.event.pull_request.labels.*.name, 'R0-silent') }}

.github/workflows/publish-check-compile.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@ jobs:
2626
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7
2727

2828
- name: Rust Cache
29-
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
29+
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
3030
with:
3131
cache-on-failure: true
3232

3333
- name: install parity-publish
34-
run: cargo install [email protected] --locked -q
34+
run: |
35+
rustup override set 1.82.0
36+
cargo install [email protected] --locked -q
3537
3638
- name: parity-publish update plan
3739
run: parity-publish --color always plan --skip-check --prdoc prdoc/

.github/workflows/publish-check-crates.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7
2020

2121
- name: Rust Cache
22-
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
22+
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
2323
with:
2424
cache-on-failure: true
2525

2626
- name: install parity-publish
27-
run: cargo install [email protected].3 --locked -q
27+
run: cargo install [email protected].4 --locked -q
2828

2929
- name: parity-publish check
3030
run: parity-publish --color always check --allow-unpublished

.github/workflows/publish-claim-crates.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7
1414

1515
- name: Rust Cache
16-
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
16+
uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 # v2.7.7
1717
with:
1818
cache-on-failure: true
1919

2020
- name: install parity-publish
21-
run: cargo install [email protected].3 --locked -q
21+
run: cargo install [email protected].4 --locked -q
2222

2323
- name: parity-publish claim
2424
env:

0 commit comments

Comments
 (0)