This commit is contained in:
Patrick Lehmann
2024-04-24 23:06:58 +02:00
5 changed files with 5 additions and 11 deletions

View File

@@ -36,23 +36,19 @@ on:
type: string type: string
jobs: jobs:
ArtifactCleanUp: ArtifactCleanUp:
name: 🗑️ Artifact Cleanup name: 🗑️ Artifact Cleanup
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: 🗑️ Delete package Artifacts - name: 🗑️ Delete package Artifacts
if: ${{ ! startsWith(github.ref, 'refs/tags') }} if: ${{ ! startsWith(github.ref, 'refs/tags') }}
uses: geekyeggo/delete-artifact@v5 uses: geekyeggo/delete-artifact@v5
with: with:
name: ${{ inputs.package }} name: ${{ inputs.package }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: 🗑️ Delete remaining Artifacts - name: 🗑️ Delete remaining Artifacts
if: ${{ inputs.remaining != '' }} if: ${{ inputs.remaining != '' }}
uses: geekyeggo/delete-artifact@v5 uses: geekyeggo/delete-artifact@v5
with: with:
name: ${{ inputs.remaining }} name: ${{ inputs.remaining }}
token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -44,7 +44,6 @@ jobs:
continue-on-error: true continue-on-error: true
with: with:
name: ${{ inputs.sqlite_coverage_artifacts_prefix }}* name: ${{ inputs.sqlite_coverage_artifacts_prefix }}*
token: ${{ secrets.GITHUB_TOKEN }}
- name: 🗑️ Delete XML coverage artifacts from matrix jobs - name: 🗑️ Delete XML coverage artifacts from matrix jobs
uses: geekyeggo/delete-artifact@v5 uses: geekyeggo/delete-artifact@v5
@@ -52,4 +51,3 @@ jobs:
continue-on-error: true continue-on-error: true
with: with:
name: ${{ inputs.xml_unittest_artifacts_prefix }}* name: ${{ inputs.xml_unittest_artifacts_prefix }}*
token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -3,7 +3,7 @@
pyTooling ~= 6.1 pyTooling ~= 6.1
# Enforce latest version on ReadTheDocs # Enforce latest version on ReadTheDocs
sphinx ~= 7.2 sphinx ~= 7.3
docutils ~= 0.18.0 docutils ~= 0.18.0
# Sphinx Extenstions # Sphinx Extenstions
@@ -16,5 +16,5 @@ sphinxcontrib-mermaid>=0.9.2
autoapi >= 2.0.1 autoapi >= 2.0.1
sphinx_fontawesome >= 0.0.6 sphinx_fontawesome >= 0.0.6
sphinx-inline-tabs >= 2023.4.21 sphinx-inline-tabs >= 2023.4.21
sphinx_autodoc_typehints >= 1.24.0 sphinx_autodoc_typehints ~= 2.1
# changelog>=0.3.5 # changelog>=0.3.5

View File

@@ -1,7 +1,7 @@
[build-system] [build-system]
requires = [ requires = [
"setuptools >= 69.0.0", "setuptools ~= 69.5",
"wheel >= 0.40.0", "wheel ~= 0.40.0",
"pyTooling ~= 6.1" "pyTooling ~= 6.1"
] ]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"

View File

@@ -8,6 +8,6 @@ pytest ~= 8.1
pytest-cov ~= 5.0 pytest-cov ~= 5.0
# Static Type Checking # Static Type Checking
mypy ~= 1.9 mypy ~= 1.10
typing_extensions ~= 4.11 typing_extensions ~= 4.11
lxml ~= 5.1 lxml ~= 5.1