From 3a7ea561bf94ad0da56d8bab0cedfbc8e6ccd293 Mon Sep 17 00:00:00 2001 From: Marc Ransome Date: Wed, 25 Feb 2026 19:25:41 +0000 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c45a099..a2fd3ae 100644 --- a/README.md +++ b/README.md @@ -22,14 +22,14 @@ Add a `uses` step to your GitHub [workflow](https://docs.github.com/en/actions/r ```yaml - name: Indent check - uses: fish-shop/indent-check@v1 + uses: fish-shop/indent-check@v2 ``` By default, all files under `$GITHUB_WORKSPACE` with a `.fish` file extension are checked. To override the default behaviour, provide one or more space-separated pattern values to the `patterns` input. For example, to check all `.fish` files starting in the `src` directory and descending into subdirectories: ```yaml - name: Indent check - uses: fish-shop/indent-check@v1 + uses: fish-shop/indent-check@v2 with: patterns: src/**.fish ``` @@ -38,7 +38,7 @@ Each pattern value may include [wildcards](https://fishshell.com/docs/current/la ```yaml - name: Indent check - uses: fish-shop/indent-check@v1 + uses: fish-shop/indent-check@v2 with: patterns: init.fish functions/**.fish {conf.d,completions}/**.fish tests/???-*.fish ```