From 8adbec66bfae38384ec9fe13905c947f9a605ec0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 May 2024 08:30:43 +0200 Subject: [PATCH] Bump cda-tum/mqt-core from 2.4.1 to 2.4.2 in the github-actions group (#332) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the github-actions group with 1 update: [cda-tum/mqt-core](https://github.com/cda-tum/mqt-core). Updates `cda-tum/mqt-core` from 2.4.1 to 2.4.2
Release notes

Sourced from cda-tum/mqt-core's releases.

MQT Core 2.4.2 Release

👀 What Changed

Small patch release with updated reusable workflow. Apple Silicon runners now also support Python 3.8 and 3.9. Python tests are now run on:

This means that, e.g., for a library that supports Python 3.8 to 3.12, 5+2+2+2=11 test runs will be started and will produce coverage reports. If you update to the new version of the workflows, make sure to adjust the codecov config.

📄 Documentation

🤖 CI

⬆️ Dependencies

Full Changelog: https://github.com/cda-tum/mqt-core/compare/v2.4.1...v2.4.2

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cda-tum/mqt-core&package-manager=github_actions&previous-version=2.4.1&new-version=2.4.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .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 b469f8ac3..ebfd7a562 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.1 + uses: cda-tum/mqt-core/.github/workflows/reusable-python-packaging.yml@v2.4.2 with: pure-python: true diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48dab046d..f6fbba7ee 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.1 + uses: cda-tum/mqt-core/.github/workflows/reusable-change-detection.yml@v2.4.2 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.1 + uses: cda-tum/mqt-core/.github/workflows/reusable-python-ci.yml@v2.4.2 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.1 + uses: cda-tum/mqt-core/.github/workflows/reusable-code-ql-python.yml@v2.4.2 required-checks-pass: # This job does nothing and is only used for branch protection name: 🚦 Check