diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d5c82e5..b4075ec 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -7,7 +7,7 @@ on: jobs: python-packaging: name: 🐍 Packaging - uses: cda-tum/mqt-core/.github/workflows/reusable-python-packaging.yml@v2.4.0 + uses: cda-tum/mqt-core/.github/workflows/reusable-python-packaging.yml@v2.4.1 deploy: if: github.event_name == 'release' && github.event.action == 'published' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 477341c..1f0ec32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,13 +14,13 @@ concurrency: jobs: change-detection: name: 🔍 Change - uses: cda-tum/mqt-core/.github/workflows/reusable-change-detection.yml@v2.4.0 + uses: cda-tum/mqt-core/.github/workflows/reusable-change-detection.yml@v2.4.1 cpp-tests: name: 🇨‌ Test needs: change-detection if: fromJSON(needs.change-detection.outputs.run-cpp-tests) - uses: cda-tum/mqt-core/.github/workflows/reusable-cpp-ci.yml@v2.4.0 + uses: cda-tum/mqt-core/.github/workflows/reusable-cpp-ci.yml@v2.4.1 secrets: token: ${{ secrets.CODECOV_TOKEN }} with: @@ -33,13 +33,13 @@ jobs: name: 🇨‌ Lint needs: change-detection if: fromJSON(needs.change-detection.outputs.run-cpp-linter) - uses: cda-tum/mqt-core/.github/workflows/reusable-cpp-linter.yml@v2.4.0 + uses: cda-tum/mqt-core/.github/workflows/reusable-cpp-linter.yml@v2.4.1 python-tests: name: 🐍 Test needs: change-detection if: fromJSON(needs.change-detection.outputs.run-python-tests) - uses: cda-tum/mqt-core/.github/workflows/reusable-python-ci.yml@v2.4.0 + uses: cda-tum/mqt-core/.github/workflows/reusable-python-ci.yml@v2.4.1 secrets: token: ${{ secrets.CODECOV_TOKEN }} @@ -47,7 +47,7 @@ jobs: name: 📝 CodeQL needs: change-detection if: fromJSON(needs.change-detection.outputs.run-code-ql) - uses: cda-tum/mqt-core/.github/workflows/reusable-code-ql.yml@v2.4.0 + uses: cda-tum/mqt-core/.github/workflows/reusable-code-ql.yml@v2.4.1 required-checks-pass: # This job does nothing and is only used for branch protection name: 🚦 Check