From 6cbea1a7947962ed471795015128faa83769af2d Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Mon, 24 Feb 2025 02:18:45 +0000 Subject: [PATCH] chore: prepare release 1.11.0 --- CHANGELOG.md | 5 +++++ README.md | 2 +- action.yml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ac8d9f..25142be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.11.0] - 2025-02-24 + +* Add new parameter `cache-bin` that is propagated to `Swatinem/rust-cache` as `cache-bin` (#51 by @enkhjile) +* Add new parameter `cache-shared-key` that is propagated to `Swatinem/rust-cache` as `shared-key` (#52 by @skanehira) + ## [1.10.1] - 2024-10-01 * Fix problem matcher for rustfmt output. diff --git a/README.md b/README.md index 209e5d3..10e7bb2 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Afterward, the `components` and `target` specified via inputs are installed in a | `cache-workspaces` | Propagates the value to [`Swatinem/rust-cache`] | | | `cache-on-failure` | Propagates the value to [`Swatinem/rust-cache`] | true | | `cache-key` | Propagates the value to [`Swatinem/rust-cache`] as `key` | | -| `shared-cache-key` | Propagates the value to [`Swatinem/rust-cache`] as `shared-key` | | +| `cache-shared-key` | Propagates the value to [`Swatinem/rust-cache`] as `shared-key` | | | `matcher` | Enable problem matcher to surface build messages and formatting issues | true | | `rustflags` | Set the value of `RUSTFLAGS` (set to empty string to avoid overwriting existing flags) | "-D warnings" | | `override` | Setup the last installed toolchain as the default via `rustup override` | true | diff --git a/action.yml b/action.yml index df6946e..f829e66 100644 --- a/action.yml +++ b/action.yml @@ -38,7 +38,7 @@ inputs: cache-key: description: "An additional cache key that is added alongside the automatic `job`-based cache key and can be used to further differentiate jobs." required: false - shared-cache-key: + cache-shared-key: description: "A cache key that is used instead of the automatic `job`-based key, and is stable over multiple jobs." required: false matcher: @@ -203,4 +203,4 @@ runs: cache-directories: ${{inputs.cache-directories}} cache-on-failure: ${{inputs.cache-on-failure}} key: ${{inputs.cache-key}} - shared-key: ${{inputs.shared-cache-key}} + shared-key: ${{inputs.cache-shared-key}}