Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/CI-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [windows-2022, windows-2025]
qt_ver: [6.10.0]
qt_ver: [6.11.1]
fail-fast: false

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.10.0
version: 6.11.1
modules: 'qtcharts'
setup-python: 'false'
cache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-22.04

env:
QT_VERSION: 6.10.0
QT_VERSION: 6.11.1

steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/iwyu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@
# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
name: include-what-you-use

on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
on: [push, pull_request]

permissions:
contents: read
Expand Down Expand Up @@ -36,7 +33,7 @@ jobs:
image: ${{ matrix.image }}

env:
QT_VERSION: 6.10.0
QT_VERSION: 6.11.1

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -196,7 +193,7 @@ jobs:
if: ${{ github.repository_owner == 'cppcheck-opensource' }}

env:
QT_VERSION: 6.10.0
QT_VERSION: 6.11.1

steps:
- uses: actions/checkout@v4
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,7 @@
# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
name: release-windows

on:
push:
tags:
- '2.*'
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
on: [pull_request, push]

permissions:
contents: read
Expand All @@ -28,7 +22,7 @@ jobs:
PYTHON_VERSION: 3.14
# see https://www.pcre.org/original/changelog.txt
PCRE_VERSION: 8.45
QT_VERSION: 6.10.0
QT_VERSION: 6.11.1
BOOST_MINOR_VERSION: 89

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-22.04

env:
QT_VERSION: 6.10.0
QT_VERSION: 6.11.1
ASAN_OPTIONS: detect_stack_use_after_return=1
TSAN_OPTIONS: halt_on_error=1
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1:report_error_type=1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/selfcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-22.04

env:
QT_VERSION: 6.10.0
QT_VERSION: 6.11.1

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions releasenotes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ Other:
- Moved source code from https://github.com/danmar/cppcheck to https://github.com/cppcheck-opensource/cppcheck
- The official Windows binary is now built with Visual Studio 2026.
- Updated simplecpp to 1.7.0.
- Updated Qt to 6.11.1 (official binary only).
-
Loading