From fd97f3ba40dc37779f85cdc690d532788b993841 Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Mon, 27 Oct 2025 10:35:09 +0100 Subject: [PATCH 1/2] cmake: do not explicitly require `boost_system` It is a header-only library that is no longer available as a stub library in `boost-1.89`. Related: https://github.com/csutils/csdiff/pull/234 --- src/CMakeLists.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 4422a3f..7234ecc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -45,7 +45,6 @@ find_package(Boost REQUIRED COMPONENTS filesystem program_options regex - system OPTIONAL_COMPONENTS json nowide) include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) From 2791d449cede54a0e687d8c820da04bb4166d97b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 03:12:49 +0000 Subject: [PATCH 2/2] build(deps): bump actions/upload-artifact from 4 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] PR: https://github.com/csutils/csdiff/pull/234 --- .github/workflows/differential-shellcheck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/differential-shellcheck.yml b/.github/workflows/differential-shellcheck.yml index a2581ba..c95aa9c 100644 --- a/.github/workflows/differential-shellcheck.yml +++ b/.github/workflows/differential-shellcheck.yml @@ -32,7 +32,7 @@ jobs: - if: ${{ runner.debug == '1' && !cancelled() }} name: Upload artifact with ShellCheck defects in SARIF format - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: Differential ShellCheck SARIF path: ${{ steps.ShellCheck.outputs.sarif }}