From d48bf7cf1f65cb1016c68db95dbc90ec61e7f55a Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Tue, 11 Nov 2025 18:19:19 +0900 Subject: [PATCH] Upgrade checkout and cspell-action versions Updated actions/checkout and cspell-action versions in README. Signed-off-by: Christian Oliff --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d7fd917d..504574319 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,16 @@ jobs: spellcheck: # run the action runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: streetsidesoftware/cspell-action@v7 + - uses: actions/checkout@v5 + with: +          persist-credentials: false + - uses: streetsidesoftware/cspell-action@v8 ``` ## Usage ```yaml -- uses: streetsidesoftware/cspell-action@v7 +- uses: streetsidesoftware/cspell-action@v8 with: # Define glob patterns to filter the files to be checked. Use a new line between patterns to define multiple patterns. # The default is to check ALL files that were changed in in the pull_request or push.