Skip to content

Commit 476a223

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0fef5b9 commit 476a223

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/cmake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
steps:
5555
- name: Checkout ${{ github.ref_name }}
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757
- run: git submodule update --init --recursive
5858
- name: set extra GITHUB_PATH ${{ matrix.config.extra_path }} (for MinGW)
5959
shell: bash

.github/workflows/cmake_builtin_lib.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout ${{ github.ref_name }}
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
- run: git submodule update --init --recursive
2828
- run: mkdir build
2929
- 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 ..

.github/workflows/cmake_subdir_example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
}
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- name: configure
3232
shell: cmake -P {0}
3333
run: |

.github/workflows/meson.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
}
5050

5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v5
5353
# use msvc-dev-cmd to setup the environment for MSVC if needed
5454
- name: setup MSVC
5555
if: matrix.config.requires_msvc

0 commit comments

Comments
 (0)