From a22a962245b58866c138b365a894f83528e449e2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 01:21:06 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cmake.yml | 2 +- .github/workflows/cmake_builtin_lib.yml | 2 +- .github/workflows/cmake_subdir_example.yml | 2 +- .github/workflows/meson.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 904f58df..cf703076 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -53,7 +53,7 @@ jobs: steps: - name: Checkout ${{ github.ref_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 - run: git submodule update --init --recursive - name: set extra GITHUB_PATH ${{ matrix.config.extra_path }} (for MinGW) shell: bash diff --git a/.github/workflows/cmake_builtin_lib.yml b/.github/workflows/cmake_builtin_lib.yml index 5cf3a74d..5f768d68 100644 --- a/.github/workflows/cmake_builtin_lib.yml +++ b/.github/workflows/cmake_builtin_lib.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout ${{ github.ref_name }} - uses: actions/checkout@v4 + uses: actions/checkout@v6 - run: git submodule update --init --recursive - run: mkdir build - run: cmake -G "Unix Makefiles" -DCMAKE_VERBOSE_MAKEFILE=ON -DCMAKE_BUILD_TYPE=Debug -DSQLITECPP_INTERNAL_SQLITE=OFF -DSQLITE_OMIT_LOAD_EXTENSION=ON -DSQLITECPP_BUILD_TESTS=ON -DSQLITECPP_BUILD_EXAMPLES=ON -DSQLITECPP_RUN_CPPCHECK=OFF -DSQLITECPP_RUN_CPPLINT=OFF .. diff --git a/.github/workflows/cmake_subdir_example.yml b/.github/workflows/cmake_subdir_example.yml index 0b753ba3..65736a74 100644 --- a/.github/workflows/cmake_subdir_example.yml +++ b/.github/workflows/cmake_subdir_example.yml @@ -27,7 +27,7 @@ jobs: } steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: configure shell: cmake -P {0} run: | diff --git a/.github/workflows/meson.yml b/.github/workflows/meson.yml index b60efd43..6bd2a11c 100644 --- a/.github/workflows/meson.yml +++ b/.github/workflows/meson.yml @@ -49,7 +49,7 @@ jobs: } steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 # use msvc-dev-cmd to setup the environment for MSVC if needed - name: setup MSVC if: matrix.config.requires_msvc