Skip to content

Commit 840df7d

Browse files
β¬†οΈπŸ‘¨β€πŸ’» Update cda-tum/mqt-workflows action to v1.5
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 04a1b37 commit 840df7d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

β€Ž.github/workflows/cd.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# whether the workflow is triggered from a PR, a push to main, or a release, respectively.
1818
python-packaging:
1919
name: 🐍 Packaging
20-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.4
20+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.5
2121
with:
2222
# Do not include local version information on pushes to main to facilitate TestPyPI uploads.
2323
no-local-version: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}

β€Ž.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,41 +14,41 @@ concurrency:
1414
jobs:
1515
change-detection:
1616
name: πŸ” Change
17-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-change-detection.yml@v1.4
17+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-change-detection.yml@v1.5
1818

1919
cpp-tests:
2020
name: πŸ‡¨β€Œ Test
2121
needs: change-detection
2222
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
23-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-ci.yml@v1.4
23+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-ci.yml@v1.5
2424
with:
2525
cmake-args-macos: -DMQT_CORE_WITH_GMP=ON
2626

2727
cpp-linter:
2828
name: πŸ‡¨β€Œ Lint
2929
needs: change-detection
3030
if: fromJSON(needs.change-detection.outputs.run-cpp-linter)
31-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-linter.yml@v1.4
31+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-linter.yml@v1.5
3232
with:
3333
cmake-args: -DBUILD_MQT_CORE_BENCHMARKS=ON
3434

3535
python-tests:
3636
name: 🐍 Test
3737
needs: change-detection
3838
if: fromJSON(needs.change-detection.outputs.run-python-tests)
39-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.4
39+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.5
4040

4141
code-ql:
4242
name: πŸ“ CodeQL
4343
needs: change-detection
4444
if: fromJSON(needs.change-detection.outputs.run-code-ql)
45-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-code-ql.yml@v1.4
45+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-code-ql.yml@v1.5
4646

4747
cd:
4848
name: πŸš€ CD
4949
needs: change-detection
5050
if: fromJSON(needs.change-detection.outputs.run-cd)
51-
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.4
51+
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.5
5252

5353
required-checks-pass: # This job does nothing and is only used for branch protection
5454
name: 🚦 Check

0 commit comments

Comments
Β (0)