Pin a specific version of `typos` in CI (#15128)
Marshall Bowers
created 2 years ago
This PR makes it so we pin a specific version of `typos` in CI, rather
than just relying on whatever is already installed or what the latest
version is.
Release Notes:
- N/A
Change summary
.github/workflows/ci.yml | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
Detailed changes
@@ -40,10 +40,15 @@ jobs:
- name: Check spelling
run: |
- if ! which typos > /dev/null; then
- cargo install typos-cli
+ if ! cargo install --list | grep "typos-cli v$TYPOS_CLI_VERSION" > /dev/null; then
+ echo "Installing typos-cli@$TYPOS_CLI_VERSION..."
+ cargo install "typos-cli@$TYPOS_CLI_VERSION"
+ else
+ echo "typos-cli@$TYPOS_CLI_VERSION is already installed."
fi
typos
+ env:
+ TYPOS_CLI_VERSION: "1.23.3"
- name: Run style checks
uses: ./.github/actions/check_style