Skip to content

Commit 48acbdb

Browse files
build(deps): bump actions/checkout from 4 to 5 (#1326)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ffc7831 commit 48acbdb

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/book.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
# Keep in sync with manual-book.yml
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
with:
2222
fetch-depth: 0
2323
- name: Install mdbook and mdbook-linkcheck from binaries

.github/workflows/github-cxx-qt-tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
clang_format:
3333
runs-on: ubuntu-24.04
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
# Note ensure that matrix runner is updated too
3737
- run: |
3838
pip install --user --break-system-packages clang-format==18.1.8
@@ -43,30 +43,30 @@ jobs:
4343
license_check:
4444
runs-on: ubuntu-24.04
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
- name: REUSE Compliance Check
4848
uses: fsfe/reuse-action@v5
4949

5050
rust_format_check:
5151
runs-on: ubuntu-24.04
5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454
- run: rustup default 1.77.2
5555
- run: rustup component add rustfmt
5656
- run: cargo fmt --all --check --verbose
5757

5858
markdown_lint:
5959
runs-on: ubuntu-24.04
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v5
6262
- uses: DavidAnson/markdownlint-cli2-action@v20
6363
with:
6464
globs: '**/*.md'
6565

6666
shellcheck:
6767
runs-on: ubuntu-24.04
6868
steps:
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v5
7070
# Shellcheck is likely already installed but lets ensure it is
7171
- name: install shellcheck
7272
run: sudo apt-get install -y shellcheck
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: ubuntu-24.04
8080
steps:
8181
- name: Checkout repository
82-
uses: actions/checkout@v4
82+
uses: actions/checkout@v5
8383
# Note we need to match the LLVM and Rust versions
8484
#
8585
# See versions from the table in this link
@@ -138,7 +138,7 @@ jobs:
138138
SCCACHE_CACHE_SIZE: 600M
139139
steps:
140140
- name: "Checkout repository"
141-
uses: actions/checkout@v4
141+
uses: actions/checkout@v5
142142
- name: Setup toolchain
143143
run: |
144144
rustup default 1.77.2
@@ -424,7 +424,7 @@ jobs:
424424

425425
steps:
426426
- name: "Clone Git repository"
427-
uses: actions/checkout@v4
427+
uses: actions/checkout@v5
428428
# Ensure clippy and rustfmt is installed, they should come from github runner
429429
# clippy version needs to be 1.78.0 for the MSRV lint
430430
#

.github/workflows/manual-book.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
# Keep in sync with book.yml
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- name: Install mdbook and mdbook-linkcheck from binaries

0 commit comments

Comments
 (0)