Skip to content

Commit ff545b4

Browse files
⬆️🩹 Update patch updates
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent a52dad4 commit ff545b4

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
build-sdist:
1414
name: 🐍 Packaging
15-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-sdist.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
15+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-sdist.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
1616

1717
# Builds wheels on all supported platforms using cibuildwheel.
1818
# The wheels are uploaded as GitHub artifacts `dev-cibw-*` or `cibw-*`, depending on whether
@@ -31,7 +31,7 @@ jobs:
3131
windows-2025,
3232
windows-11-arm,
3333
]
34-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-wheel-cibuildwheel.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
34+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-wheel-cibuildwheel.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
3535
with:
3636
runs-on: ${{ matrix.runs-on }}
3737

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
jobs:
1515
change-detection:
1616
name: 🔍 Change
17-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-change-detection.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
17+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-change-detection.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
1818

1919
cpp-tests-ubuntu:
2020
name: 🇨‌ Test 🐧
@@ -30,7 +30,7 @@ jobs:
3030
- runs-on: ubuntu-24.04
3131
compiler: gcc
3232
config: Debug
33-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-ubuntu.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
33+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-ubuntu.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
3434
with:
3535
runs-on: ${{ matrix.runs-on }}
3636
compiler: ${{ matrix.compiler }}
@@ -51,7 +51,7 @@ jobs:
5151
- runs-on: macos-15
5252
compiler: clang
5353
config: Debug
54-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-macos.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
54+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-macos.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
5555
with:
5656
runs-on: ${{ matrix.runs-on }}
5757
compiler: ${{ matrix.compiler }}
@@ -72,7 +72,7 @@ jobs:
7272
- runs-on: windows-2025
7373
compiler: msvc
7474
config: Debug
75-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-windows.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
75+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-windows.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
7676
with:
7777
runs-on: ${{ matrix.runs-on }}
7878
compiler: ${{ matrix.compiler }}
@@ -83,7 +83,7 @@ jobs:
8383
name: 🇨‌ Coverage
8484
needs: change-detection
8585
if: fromJSON(needs.change-detection.outputs.run-cpp-tests)
86-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-coverage.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
86+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-coverage.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
8787
permissions:
8888
contents: read
8989
id-token: write
@@ -92,7 +92,7 @@ jobs:
9292
name: 🇨‌ Lint
9393
needs: change-detection
9494
if: fromJSON(needs.change-detection.outputs.run-cpp-linter)
95-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-linter.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
95+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-linter.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
9696
with:
9797
clang-version: 21
9898
cmake-args: -DBUILD_MQT_QUDITS_BINDINGS=ON
@@ -116,15 +116,15 @@ jobs:
116116
macos-15-intel,
117117
windows-2025,
118118
]
119-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-tests.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
119+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-tests.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
120120
with:
121121
runs-on: ${{ matrix.runs-on }}
122122

123123
python-coverage:
124124
name: 🐍 Coverage
125125
needs: [change-detection, python-tests]
126126
if: fromJSON(needs.change-detection.outputs.run-python-tests)
127-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-coverage.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
127+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-coverage.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
128128
permissions:
129129
contents: read
130130
id-token: write
@@ -133,15 +133,15 @@ jobs:
133133
name: 🐍 Lint
134134
needs: change-detection
135135
if: fromJSON(needs.change-detection.outputs.run-python-tests)
136-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-linter.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
136+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-linter.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
137137
with:
138138
check-stubs: true
139139

140140
build-sdist:
141141
name: 🚀 CD
142142
needs: change-detection
143143
if: fromJSON(needs.change-detection.outputs.run-cd)
144-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-sdist.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
144+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-sdist.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
145145

146146
build-wheel:
147147
name: 🚀 CD
@@ -159,7 +159,7 @@ jobs:
159159
windows-2025,
160160
windows-11-arm,
161161
]
162-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-wheel-cibuildwheel.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
162+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-python-packaging-wheel-cibuildwheel.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
163163
with:
164164
runs-on: ${{ matrix.runs-on }}
165165

.github/workflows/update-mqt-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ concurrency:
2121
jobs:
2222
update-mqt-core:
2323
name: ⬆️ Update MQT Core
24-
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-mqt-core-update.yml@1ebbafc839b73f2edc0559d5456bfb8f848043fd # v1.17.14
24+
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-mqt-core-update.yml@afe75175d32177a7291bbb7bd11b3276f60fc810 # v1.17.15
2525
with:
2626
update-to-head: ${{ github.event.inputs.update-to-head == 'true' }}
2727
secrets:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ repos:
7878

7979
## Ensure uv lock file is up-to-date
8080
- repo: https://github.com/astral-sh/uv-pre-commit
81-
rev: 0.10.8
81+
rev: 0.10.9
8282
hooks:
8383
- id: uv-lock
8484
priority: 0
@@ -132,7 +132,7 @@ repos:
132132

133133
## Python linting using ruff
134134
- repo: https://github.com/astral-sh/ruff-pre-commit
135-
rev: v0.15.4
135+
rev: v0.15.5
136136
hooks:
137137
- id: ruff-format
138138
priority: 1

0 commit comments

Comments
 (0)