diff --git a/.github/workflows/ArtifactCleanUp.yml b/.github/workflows/ArtifactCleanUp.yml index 02c72e7..23f0a9e 100644 --- a/.github/workflows/ArtifactCleanUp.yml +++ b/.github/workflows/ArtifactCleanUp.yml @@ -43,7 +43,7 @@ on: jobs: ArtifactCleanUp: name: 🗑️ Artifact Cleanup - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: 🗑️ Delete package Artifacts diff --git a/.github/workflows/CheckDocumentation.yml b/.github/workflows/CheckDocumentation.yml index 71187fe..3a9fa1f 100644 --- a/.github/workflows/CheckDocumentation.yml +++ b/.github/workflows/CheckDocumentation.yml @@ -47,7 +47,7 @@ on: jobs: DocCoverage: name: 👀 Check documentation coverage - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: ⏬ Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/CoverageCollection.yml b/.github/workflows/CoverageCollection.yml index 0352027..3106933 100644 --- a/.github/workflows/CoverageCollection.yml +++ b/.github/workflows/CoverageCollection.yml @@ -68,7 +68,7 @@ jobs: Coverage: name: 📈 Collect Coverage Data using Python ${{ inputs.python_version }} - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: ⏬ Checkout repository diff --git a/.github/workflows/IntermediateCleanUp.yml b/.github/workflows/IntermediateCleanUp.yml index 0499174..1ba9295 100644 --- a/.github/workflows/IntermediateCleanUp.yml +++ b/.github/workflows/IntermediateCleanUp.yml @@ -41,7 +41,7 @@ on: jobs: IntermediateCleanUp: name: 🗑️ Intermediate Artifact Cleanup - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: 🗑️ Delete SQLite coverage artifacts from matrix jobs uses: geekyeggo/delete-artifact@v5 diff --git a/.github/workflows/LaTeXDocumentation.yml b/.github/workflows/LaTeXDocumentation.yml index 54ca4f0..a12bc0a 100644 --- a/.github/workflows/LaTeXDocumentation.yml +++ b/.github/workflows/LaTeXDocumentation.yml @@ -47,7 +47,7 @@ on: jobs: PDFDocumentation: name: 📓 Converting LaTeX Documentation to PDF - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: 📥 Download artifacts '${{ inputs.latex_artifact }}' from 'SphinxDocumentation' job uses: actions/download-artifact@v4 diff --git a/.github/workflows/Package.yml b/.github/workflows/Package.yml index 476bd37..9a60d1a 100644 --- a/.github/workflows/Package.yml +++ b/.github/workflows/Package.yml @@ -49,7 +49,7 @@ jobs: Package: name: 📦 Package in Source and Wheel Format - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: ⏬ Checkout repository diff --git a/.github/workflows/Parameters.yml b/.github/workflows/Parameters.yml index 393ee55..55bdc1b 100644 --- a/.github/workflows/Parameters.yml +++ b/.github/workflows/Parameters.yml @@ -101,7 +101,7 @@ on: jobs: Parameters: - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" outputs: python_version: ${{ steps.params.outputs.python_version }} python_jobs: ${{ steps.params.outputs.python_jobs }} diff --git a/.github/workflows/PublishCoverageResults.yml b/.github/workflows/PublishCoverageResults.yml index 2e55096..5365e46 100644 --- a/.github/workflows/PublishCoverageResults.yml +++ b/.github/workflows/PublishCoverageResults.yml @@ -62,7 +62,7 @@ on: jobs: PublishCoverageResults: name: 📊 Publish Code Coverage Results - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" if: always() steps: diff --git a/.github/workflows/PublishOnPyPI.yml b/.github/workflows/PublishOnPyPI.yml index b951463..637fe00 100644 --- a/.github/workflows/PublishOnPyPI.yml +++ b/.github/workflows/PublishOnPyPI.yml @@ -53,7 +53,7 @@ jobs: PublishOnPyPI: name: 🚀 Publish to PyPI - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: 📥 Download artifacts '${{ inputs.artifact }}' from 'Package' job diff --git a/.github/workflows/PublishTestResults.yml b/.github/workflows/PublishTestResults.yml index a4e5cd5..e7447d9 100644 --- a/.github/workflows/PublishTestResults.yml +++ b/.github/workflows/PublishTestResults.yml @@ -49,7 +49,7 @@ on: jobs: PublishTestResults: name: 📊 Publish Test Results - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" if: always() steps: diff --git a/.github/workflows/PublishToGitHubPages.yml b/.github/workflows/PublishToGitHubPages.yml index 9f6ed1b..6fbf320 100644 --- a/.github/workflows/PublishToGitHubPages.yml +++ b/.github/workflows/PublishToGitHubPages.yml @@ -49,7 +49,7 @@ jobs: PublishToGitHubPages: name: 📚 Publish to GH-Pages - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: ⏬ Checkout repository diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index db77a13..bb9c686 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -29,7 +29,7 @@ jobs: Release: name: 📝 Create 'Release Page' on GitHub - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: 🔁 Extract Git tag from GITHUB_REF diff --git a/.github/workflows/SphinxDocumentation.yml b/.github/workflows/SphinxDocumentation.yml index 3d74408..16bb16b 100644 --- a/.github/workflows/SphinxDocumentation.yml +++ b/.github/workflows/SphinxDocumentation.yml @@ -78,7 +78,7 @@ on: jobs: Prepare: name: 📓 Extract configurations from pyproject.toml - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" outputs: coverage_report_html_directory: ${{ steps.getVariables.outputs.coverage_report_html_directory }} coverage_report_xml_directory: ${{ steps.getVariables.outputs.coverage_report_xml_directory }} @@ -164,7 +164,7 @@ jobs: Sphinx-HTML: name: 📓 Documentation generation using Sphinx and Python ${{ inputs.python_version }} - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" needs: - Prepare @@ -219,7 +219,7 @@ jobs: Sphinx-LaTeX: name: 📓 Documentation generation using Sphinx and Python ${{ inputs.python_version }} - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" needs: - Prepare diff --git a/.github/workflows/StaticTypeCheck.yml b/.github/workflows/StaticTypeCheck.yml index 82fe2bf..feb8c69 100644 --- a/.github/workflows/StaticTypeCheck.yml +++ b/.github/workflows/StaticTypeCheck.yml @@ -68,7 +68,7 @@ jobs: StaticTypeCheck: name: 👀 Check Static Typing using Python ${{ inputs.python_version }} - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: ⏬ Checkout repository diff --git a/.github/workflows/VerifyDocs.yml b/.github/workflows/VerifyDocs.yml index f816305..9f4ec22 100644 --- a/.github/workflows/VerifyDocs.yml +++ b/.github/workflows/VerifyDocs.yml @@ -40,7 +40,7 @@ jobs: VerifyDocs: name: 👍 Verify example snippets using Python ${{ inputs.python_version }} - runs-on: "ubuntu-${ubuntu_image_version}" + runs-on: "ubuntu-${{ inputs.ubuntu_image_version }}" steps: - name: ⏬ Checkout repository