From e5827d0ae920d46d3e3b2df47c7e2ba3bcf2c0f6 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Mon, 18 Apr 2022 17:37:03 +0200 Subject: [PATCH] using proper bash defaults https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsshell --- .github/workflows/ci_mac.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_mac.yml b/.github/workflows/ci_mac.yml index 282567d338..2b0a86f8cf 100644 --- a/.github/workflows/ci_mac.yml +++ b/.github/workflows/ci_mac.yml @@ -67,7 +67,7 @@ jobs: build-and-test: defaults: run: - shell: /usr/bin/arch -arch ${{ matrix.arch }} /bin/bash -l {0} + shell: /usr/bin/arch -arch ${{ matrix.arch }} /bin/bash --noprofile --norc -eo pipefail {0} runs-on: ${{ matrix.runner }}