From ac9fbc2d852c70d7e9d305a62bdd7b1517c50e3d Mon Sep 17 00:00:00 2001 From: jonasbn Date: Thu, 18 May 2023 11:44:16 +0200 Subject: [PATCH] Preparing release 0.32.0 --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 43304c06..29a4b09c 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.31.0 + - uses: rojopolis/spellcheck-github-actions@0.32.0 name: Spellcheck ``` @@ -66,7 +66,7 @@ This configuration file must be created in a the `.github/workflows/` directory. For example, it could be named `.github/workflows/spelling_action.yml` for easy identification, if other actions are present. -In the above example, the configuration is pointing to the exact version of `0.31.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date. +In the above example, the configuration is pointing to the exact version of `0.32.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date. ```yaml name: Spellcheck Action @@ -154,7 +154,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.31.0 + - uses: rojopolis/spellcheck-github-actions@0.32.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -182,7 +182,7 @@ jobs: steps: # The checkout step - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.31.0 + - uses: rojopolis/spellcheck-github-actions@0.32.0 name: Spellcheck with: source_files: README.md CHANGELOG.md notes/Notes.md @@ -262,7 +262,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.31.0 + - uses: rojopolis/spellcheck-github-actions@0.32.0 name: Spellcheck with: config_path: config/.spellcheck.yml # put path to configuration file here @@ -428,7 +428,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.31.0 + - uses: rojopolis/spellcheck-github-actions@0.32.0 name: Spellcheck with: config_path: .github/spellcheck.yml # <--- put path to configuration file here @@ -643,7 +643,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: rojopolis/spellcheck-github-actions@0.31.0 + - uses: rojopolis/spellcheck-github-actions@0.32.0 name: Spellcheck ```