Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
pull-requests: write
needs: change-detection
if: fromJSON(needs.change-detection.outputs.run-linter) && github.event.action != 'closed'
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-linter.yml@143bf51e7192c31e76abafe58e3732c5aff9c69b # v2.0.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-linter.yml@fe2cdef83f21c972314c8040a1a31af9803b5498 # v2.0.2
with:
clang-version: 21
cpp-linter-extra-args: "-std=c++20"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository 🛎️
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
ref: ${{ github.event.release.tag_name || inputs.version }}

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
force: false

- name: Checkout gh-pages branch 🛎️
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
ref: gh-pages
path: gh-pages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-change-detection.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run-template: ${{ steps.template-changes.outputs.run-template || false }}
run-docs: ${{ steps.docs-changes.outputs.run-docs || false }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Get a list of the changed files relevant for the tests
if: github.event_name == 'pull_request'
id: changed-testable-files
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable-cpp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
matrix:
preset: [debug, release]
fail-fast: false
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-ubuntu.yml@143bf51e7192c31e76abafe58e3732c5aff9c69b # v2.0.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-ubuntu.yml@fe2cdef83f21c972314c8040a1a31af9803b5498 # v2.0.2
with:
preset-name: ${{ matrix.preset }}

cpp-tests-macos:
name: 🍎
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-macos.yml@143bf51e7192c31e76abafe58e3732c5aff9c69b # v2.0.1
uses: munich-quantum-toolkit/workflows/.github/workflows/reusable-cpp-tests-macos.yml@fe2cdef83f21c972314c8040a1a31af9803b5498 # v2.0.2
with:
preset-name: release

Expand All @@ -42,7 +42,7 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install Ninja
run: pipx install ninja
- name: Configure CMake
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-cpp-install-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
FORCE_COLOR: 3
steps:
# check out the repository (including submodules and all history)
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0
# set up ccache for faster C++ builds
- name: Setup ccache
uses: Chocobo1/setup-ccache-action@7e813cbdf161f77737576f5c370b2810dbae058c # v1.5.7
uses: Chocobo1/setup-ccache-action@802ec72ba1d54bbf75c52f45367253d6abec30f5 # v1.5.8
with:
prepend_symlinks_to_path: false
override_cache_key: c++-tests-install-${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install Doxygen
if: github.event.action != 'closed'
uses: ssciwr/doxygen-install@329d88f5a303066a5bd006db7516b1925b86350e # v2.0.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-template-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
CTEST_PARALLEL_LEVEL: 4
FORCE_COLOR: 3
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
path: qdmi
- name: Configure template
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ repos:

# Check for spelling
- repo: https://github.com/crate-ci/typos
rev: v1.47.0
rev: v1.47.2
hooks:
- id: typos

Expand Down
6 changes: 3 additions & 3 deletions templates/device/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ repos:

# Ensure uv lock file is up-to-date
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.11.17
rev: 0.11.19
hooks:
- id: uv-lock

# Python linting using ruff
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.15
rev: v0.15.16
hooks:
- id: ruff-check
- id: ruff-format
Expand All @@ -66,7 +66,7 @@ repos:

# Check for spelling
- repo: https://github.com/crate-ci/typos
rev: v1.47.0
rev: v1.47.2
hooks:
- id: typos

Expand Down
2 changes: 1 addition & 1 deletion templates/device/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ test = [
dev = [
{include-group = "test"},
"nox>=v2026.4.10",
"ty==0.0.40",
"ty==0.0.44",
]


Expand Down
40 changes: 20 additions & 20 deletions templates/device/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading