diff --git a/action.yml b/action.yml index 2943904..e7566ef 100644 --- a/action.yml +++ b/action.yml @@ -24,7 +24,7 @@ runs: - if: ${{ inputs.all }} name: "Running TOML Sort check on all TOML files starting from current directory" shell: "bash" - run: find . -name "*.toml" -not -path "./target/*" | xargs -L1 ./toml-sort --check + run: find . -iname "*.toml" -not -path "./target/*" | xargs -L1 ./toml-sort --check - if: ${{ !inputs.all }} name: "Running TOML Sort check on given files" shell: "bash"