From 3abf209dfcfe6909afae89be61510bd1cd42da0a Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Wed, 6 Dec 2023 11:13:23 -0500 Subject: [PATCH] ci: Use bash shell --- .github/workflows/lint.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a77beb6..5376ec0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -15,5 +15,7 @@ jobs: with: path: ~/.cache/pip key: ${{ runner.os }}-pip - - run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash - - - run: curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash - + - shell: bash + run: curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash - + - shell: bash + run: curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash -