diff --git a/.travis.yml b/.travis.yml
index 6d9589c32397ccde050001b3b9c6470b61f9f4c2..edee8f1310dd82547a7e975122b25527ccd27f5d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -37,7 +37,7 @@ jobs:
       script:
         # Install and run `salt-lint`
         - pip install --user salt-lint
-        - git ls-files -- *.sls *.jinja *.j2 *.tmpl *.tst
+        - git ls-files -- '*.sls' '*.jinja' '*.j2' '*.tmpl' '*.tst'
                         | xargs salt-lint
         # Install and run `yamllint`
         # Need at least `v1.17.0` for the `yaml-files` setting
@@ -48,7 +48,7 @@ jobs:
         - rubocop -d
         # Run `shellcheck` (already pre-installed in Travis)
         - shellcheck --version
-        - git ls-files -- *.sh *.bash *.ksh
+        - git ls-files -- '*.sh' '*.bash' '*.ksh'
                         | xargs shellcheck
         # Install and run `commitlint`
         - npm i -D @commitlint/config-conventional