From c9fdc716fe9e5edcd0531155a28af62aa85685fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 12:13:10 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Code_Coverage.yml | 2 +- .github/workflows/clang_format.yml | 2 +- .github/workflows/cmake.yml | 2 +- .github/workflows/codeql.yml | 2 +- .github/workflows/cppcheck.yml | 2 +- .github/workflows/flawfinder.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/Code_Coverage.yml b/.github/workflows/Code_Coverage.yml index 561e625..5274cf7 100644 --- a/.github/workflows/Code_Coverage.yml +++ b/.github/workflows/Code_Coverage.yml @@ -20,7 +20,7 @@ jobs: - name: Install tools manually run: sudo apt-get install lcov gcovr - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Configure CMake run: cmake -DTEST=ON -DCODE_COVERAGE=ON -B ${{github.workspace}}/build; sudo apt-get install lcov gcovr diff --git a/.github/workflows/clang_format.yml b/.github/workflows/clang_format.yml index d8f7bca..b691744 100644 --- a/.github/workflows/clang_format.yml +++ b/.github/workflows/clang_format.yml @@ -17,7 +17,7 @@ jobs: - 'example' - 'test' steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Run clang-format style check uses: jidicula/clang-format-action@v4.18.0 with: diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 613fa5e..9c7bf11 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 6dafa6e..436297c 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -40,7 +40,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/cppcheck.yml b/.github/workflows/cppcheck.yml index 43896e3..7314a36 100644 --- a/.github/workflows/cppcheck.yml +++ b/.github/workflows/cppcheck.yml @@ -8,7 +8,7 @@ jobs: name: cppcheck-test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: cppcheck uses: deep5050/cppcheck-action@main diff --git a/.github/workflows/flawfinder.yml b/.github/workflows/flawfinder.yml index aefc3e2..8fc9151 100644 --- a/.github/workflows/flawfinder.yml +++ b/.github/workflows/flawfinder.yml @@ -24,7 +24,7 @@ jobs: security-events: write steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: flawfinder_scan uses: david-a-wheeler/flawfinder@c4216b74cf2639ffa98503768bd6e4299b5440c9