From 1b5f149904159f643524d61c29d5ccfd9a0e6797 Mon Sep 17 00:00:00 2001 From: Felix Scheffler Date: Wed, 5 Jun 2024 09:22:12 +0200 Subject: [PATCH] Fix actions --- .github/actions/steps_download/action.yml | 5 +++-- .github/workflows/build-reusable.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/actions/steps_download/action.yml b/.github/actions/steps_download/action.yml index ca4901d..1aa42a3 100644 --- a/.github/actions/steps_download/action.yml +++ b/.github/actions/steps_download/action.yml @@ -13,6 +13,7 @@ runs: uses: actions/download-artifact@v4.1.0 with: name: "${{inputs.ArtifactName}}" + path: "${{runner.temp}}/${{inputs.ArtifactName}}" - name: Use Python ${{inputs.PyVersionLatest}} uses: actions/setup-python@v5.0.0 with: @@ -24,7 +25,7 @@ runs: shell: bash - name: List files run: Get-ChildItem -Path .\ -Recurse -Force - working-directory: "${{ github.workspace }}" + working-directory: "${{ runner.temp }}" shell: pwsh - name: Unit and Integration Tests env: @@ -32,6 +33,6 @@ runs: TMP: "${{ runner.temp }}" TESTRESULTSPATH: "${{ runner.temp }}" COVRESULTSPATH: "${{ runner.temp }}\\cov.xml" - run: tox --installpkg ${{ github.workspace }}/${{inputs.ArtifactName}}/* -vv -r -s true + run: tox --installpkg ${{ runner.temp }}/${{inputs.ArtifactName}}/* -vv -r -s true shell: bash working-directory: "${{inputs.PkgRootFolder}}" \ No newline at end of file diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index 4e1af11..787305f 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -112,7 +112,7 @@ jobs: working-directory: "${{ runner.temp }}\\cov_results" - name: Upload Coverage if: success() || failure() - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v3 with: # Hard copy from step above due to https://github.com/actions/runner/issues/2204 directory: ${{ runner.temp }}/cov_results