From 58361243ec66af3ff0c0c8711f38d0cc38decea8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Fri, 26 Aug 2022 09:46:29 -0700 Subject: [PATCH] Fix sourcing of helpers.sh in coverity workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The path to the helpers.sh script to source was put one level too deep by cfbd763ef8eb9 ("Use foldable helpers where applicable") and the GITHUB_ACTION_PATH variable is not actually defined in a workflow. Fix up both issues. Signed-off-by: Daniel Müller --- .github/workflows/coverity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 1f51087..8caa8ad 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -15,7 +15,7 @@ jobs: - uses: ./.github/actions/setup - name: Run coverity run: | - source $GITHUB_ACTION_PATH/../../../ci/vmtest/helpers.sh + source "${GITHUB_WORKSPACE}"/ci/vmtest/helpers.sh foldable start "Setup CI env" source /tmp/ci_setup export COVERITY_SCAN_NOTIFICATION_EMAIL="${AUTHOR_EMAIL}"