From 6bc08569aa9a7a7fceb5075477683c70e8999015 Mon Sep 17 00:00:00 2001 From: Nils Quetschlich Date: Fri, 24 May 2024 23:24:29 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B1=20switched=20from=20mqt-core=20to?= =?UTF-8?q?=20mqt-workflows=20for=20CI=20workflows=20(#230)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/cd.yml | 2 +- .github/workflows/ci.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 73d56f58e..aef581b41 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.2 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.0.0 with: pure-python: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6fbba7ee..712658698 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.2 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-change-detection.yml@v1.0.0 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.2 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.0.0 secrets: token: ${{ secrets.CODECOV_TOKEN }} @@ -28,7 +28,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-python.yml@v2.4.2 + uses: cda-tum/mqt-workflows/.github/workflows/reusable-code-ql-python.yml@v1.0.0 required-checks-pass: # This job does nothing and is only used for branch protection name: 🚦 Check