Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cpp-linter/cpp-linter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4d51599
Choose a base ref
...
head repository: cpp-linter/cpp-linter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4d2df05
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 1, 2025

  1. Bump the actions group with 2 updates (#163)

    Bumps the actions group with 2 updates: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [codecov/codecov-action](https://github.com/codecov/codecov-action).
    
    
    Updates `astral-sh/setup-uv` from 6.6.1 to 6.8.0
    - [Release notes](https://github.com/astral-sh/setup-uv/releases)
    - [Commits](astral-sh/setup-uv@557e51d...d0cc045)
    
    Updates `codecov/codecov-action` from 5.5.0 to 5.5.1
    - [Release notes](https://github.com/codecov/codecov-action/releases)
    - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
    - [Commits](codecov/codecov-action@fdcc847...5a10915)
    
    ---
    updated-dependencies:
    - dependency-name: astral-sh/setup-uv
      dependency-version: 6.8.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: actions
    - dependency-name: codecov/codecov-action
      dependency-version: 5.5.1
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: actions
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    1b4a252 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2025

  1. fix: prevent duplicate files when --files-changed-only=false (#164)

    I found that the glob pattern for some extensions hit multiple files more than once.
    
    ```py
    pathlib.Path(".").rglob("*.c")
    # matches demo.c and demo.cpp
    ```
    
    Worse, the duplicates were being analyzed more than once.
    So, this offer a performance improvement as well.
    2bndy5 authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    4d2df05 View commit details
    Browse the repository at this point in the history
Loading