fix: add cache-bin input with true as default value

This commit is contained in:
Enkhjil Enkhbaatar 2025-02-04 15:13:57 +09:00
parent 97db979bf8
commit 30081c4da5
2 changed files with 6 additions and 0 deletions

View file

@ -38,6 +38,10 @@ 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
cache-bin:
description: "Determines whether to cache ${CARGO_HOME}/bin."
required: false
default: "true"
matcher:
description: "Enable the Rust problem matcher"
required: false
@ -199,4 +203,5 @@ runs:
workspaces: ${{inputs.cache-workspaces}}
cache-directories: ${{inputs.cache-directories}}
cache-on-failure: ${{inputs.cache-on-failure}}
cache-bin: ${{inputs.cache-bin}}
key: ${{inputs.cache-key}}