From 3e98290c7f9a8b5d649cc039b3b0562e3f2d1c49 Mon Sep 17 00:00:00 2001 From: muraca Date: Wed, 25 Oct 2023 09:41:20 +0200 Subject: [PATCH] added missing `"` Signed-off-by: muraca --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index be3aee5..f5bda1d 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ runs: - if: ${{ inputs.all }} name: "Running TOML Sort check" shell: "bash" - run: find . -type f -iname ${{ inputs.match }} -not -path "./target/*" | xargs -L1 ./toml-sort --check + run: find . -type f -iname "${{ inputs.match }}" -not -path "./target/*" | xargs -L1 ./toml-sort --check - if: ${{ !inputs.all }} name: "Running TOML Sort check" shell: "bash"