32
32
clang_format :
33
33
runs-on : ubuntu-24.04
34
34
steps :
35
- - uses : actions/checkout@v4
35
+ - uses : actions/checkout@v5
36
36
# Note ensure that matrix runner is updated too
37
37
- run : |
38
38
pip install --user --break-system-packages clang-format==18.1.8
@@ -43,30 +43,30 @@ jobs:
43
43
license_check :
44
44
runs-on : ubuntu-24.04
45
45
steps :
46
- - uses : actions/checkout@v4
46
+ - uses : actions/checkout@v5
47
47
- name : REUSE Compliance Check
48
48
uses : fsfe/reuse-action@v5
49
49
50
50
rust_format_check :
51
51
runs-on : ubuntu-24.04
52
52
steps :
53
- - uses : actions/checkout@v4
53
+ - uses : actions/checkout@v5
54
54
- run : rustup default 1.77.2
55
55
- run : rustup component add rustfmt
56
56
- run : cargo fmt --all --check --verbose
57
57
58
58
markdown_lint :
59
59
runs-on : ubuntu-24.04
60
60
steps :
61
- - uses : actions/checkout@v4
61
+ - uses : actions/checkout@v5
62
62
- uses : DavidAnson/markdownlint-cli2-action@v20
63
63
with :
64
64
globs : ' **/*.md'
65
65
66
66
shellcheck :
67
67
runs-on : ubuntu-24.04
68
68
steps :
69
- - uses : actions/checkout@v4
69
+ - uses : actions/checkout@v5
70
70
# Shellcheck is likely already installed but lets ensure it is
71
71
- name : install shellcheck
72
72
run : sudo apt-get install -y shellcheck
79
79
runs-on : ubuntu-24.04
80
80
steps :
81
81
- name : Checkout repository
82
- uses : actions/checkout@v4
82
+ uses : actions/checkout@v5
83
83
# Note we need to match the LLVM and Rust versions
84
84
#
85
85
# See versions from the table in this link
@@ -138,7 +138,7 @@ jobs:
138
138
SCCACHE_CACHE_SIZE : 600M
139
139
steps :
140
140
- name : " Checkout repository"
141
- uses : actions/checkout@v4
141
+ uses : actions/checkout@v5
142
142
- name : Setup toolchain
143
143
run : |
144
144
rustup default 1.77.2
@@ -424,7 +424,7 @@ jobs:
424
424
425
425
steps :
426
426
- name : " Clone Git repository"
427
- uses : actions/checkout@v4
427
+ uses : actions/checkout@v5
428
428
# Ensure clippy and rustfmt is installed, they should come from github runner
429
429
# clippy version needs to be 1.78.0 for the MSRV lint
430
430
#
0 commit comments