diff --git a/.github/workflows/NightlyRelease.yml b/.github/workflows/NightlyRelease.yml index d16056e..b5e4fe4 100644 --- a/.github/workflows/NightlyRelease.yml +++ b/.github/workflows/NightlyRelease.yml @@ -311,14 +311,14 @@ jobs: asset="${asset##*$}" dirName="${asset%.*}" echo " Compressing artifact '${artifact}' to '${asset}' ..." - tar -c --gzip --file="${asset}" --directory="${artifact}" --transform "s|^\.|${dirName%.tar}|" . + tar -c --gzip --owner=0 --group=0 --file="${asset}" --directory="${artifact}" --transform "s|^\.|${dirName%.tar}|" . retCode=$? else asset="${asset##*!}" echo " Compressing artifact '${artifact}' to '${asset}' ..." ( cd "${artifact}" && \ - tar -c --gzip --file="../${asset}" * + tar -c --gzip --owner=0 --group=0 --file="../${asset}" * ) retCode=$? fi @@ -340,14 +340,14 @@ jobs: asset="${asset##*$}" dirName="${asset%.*}" echo " Compressing artifact '${artifact}' to '${asset}' ..." - tar -c --zstd --file="${asset}" --directory="${artifact}" --transform "s|^\.|${dirName%.tar}|" . + tar -c --zstd --owner=0 --group=0 --file="${asset}" --directory="${artifact}" --transform "s|^\.|${dirName%.tar}|" . retCode=$? else asset="${asset##*!}" echo " Compressing artifact '${artifact}' to '${asset}' ..." ( cd "${artifact}" && \ - tar -c --zstd --file="../${asset}" * + tar -c --zstd --owner=0 --group=0 --file="../${asset}" * ) retCode=$? fi diff --git a/.github/workflows/PublishCoverageResults.yml b/.github/workflows/PublishCoverageResults.yml index 03b0cc3..e969688 100644 --- a/.github/workflows/PublishCoverageResults.yml +++ b/.github/workflows/PublishCoverageResults.yml @@ -31,7 +31,7 @@ on: type: string coverage_artifacts_pattern: required: false - default: '*-CodeCoverage-*' + default: '*-CodeCoverage-SQLite-*' type: string coverage_config: description: 'Path to the .coveragerc file. Use pyproject.toml by default.' diff --git a/.github/workflows/PublishTestResults.yml b/.github/workflows/PublishTestResults.yml index 91fca35..2d8d4a9 100644 --- a/.github/workflows/PublishTestResults.yml +++ b/.github/workflows/PublishTestResults.yml @@ -32,7 +32,7 @@ on: type: string unittest_artifacts_pattern: required: false - default: '*-UnitTestReportSummary-*' + default: '*-UnitTestReportSummary-XML-*' type: string merged_junit_artifact: description: 'Name of the merged JUnit Test Summary artifact.' diff --git a/doc/requirements.txt b/doc/requirements.txt index 35b7576..ede9f77 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -11,7 +11,7 @@ docutils_stubs ~= 0.0.22 sphinx_rtd_theme ~= 3.0 # Sphinx Extenstions -sphinxcontrib-mermaid>=0.9.2 +sphinxcontrib-mermaid ~= 1.0 autoapi >= 2.0.1 sphinx_design ~= 0.6.1 sphinx-copybutton >= 0.5.2