Skip to content

Commit c33f37f

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 dfb5ddf commit c33f37f

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed

.github/workflows/codeql-analysis.yml

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

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
- name: Initialize CodeQL
3232
uses: github/codeql-action/init@v3
3333
with:

.github/workflows/cpp-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
cpp-linter:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- name: 📂 Load .env file
2424
if: hashFiles('.github/workflows/.env') != ''

.github/workflows/dockcross.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
# steps:
3131
# - name: 📥 Checkout
32-
# uses: actions/checkout@v4
32+
# uses: actions/checkout@v5
3333
# with:
3434
# fetch-depth: 0
3535
# - name: 📂 Load .env file
@@ -64,7 +64,7 @@ jobs:
6464
steps:
6565
- uses: ammaraskar/gcc-problem-matcher@master
6666
- name: 📥 Checkout
67-
uses: actions/checkout@v4
67+
uses: actions/checkout@v5
6868
with:
6969
fetch-depth: 0
7070
- name: 📂 Load .env file
@@ -97,7 +97,7 @@ jobs:
9797
steps:
9898
- uses: ammaraskar/gcc-problem-matcher@master
9999
- name: 📥 Checkout
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
with:
102102
fetch-depth: 0
103103
- name: 📂 Load .env file
@@ -130,7 +130,7 @@ jobs:
130130
steps:
131131
- uses: ammaraskar/gcc-problem-matcher@master
132132
- name: 📥 Checkout
133-
uses: actions/checkout@v4
133+
uses: actions/checkout@v5
134134
with:
135135
fetch-depth: 0
136136
- name: 📂 Load .env file

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636

3737
- name: 🧰 Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v5
3939
with:
4040
persist-credentials: false
4141

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
cmakeVersion: ^3
7373
ninjaVersion: ^1.11.1
7474
- name: 📥 Checkout
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v5
7676
with:
7777
fetch-depth: 0
7878
- name: 📂 Load .env file
@@ -143,7 +143,7 @@ jobs:
143143
cmakeVersion: ^3
144144
ninjaVersion: ^1.11.1
145145
- name: 📥 Checkout
146-
uses: actions/checkout@v4
146+
uses: actions/checkout@v5
147147
with:
148148
fetch-depth: 0
149149
- name: 📂 Load .env file
@@ -179,7 +179,7 @@ jobs:
179179
cmakeVersion: ^3
180180
ninjaVersion: ^1.11.1
181181
- name: 📥 Checkout
182-
uses: actions/checkout@v4
182+
uses: actions/checkout@v5
183183
with:
184184
fetch-depth: 0
185185
- name: 📂 Load .env file

.github/workflows/macOS.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- uses: ammaraskar/gcc-problem-matcher@master
3333
- name: 📥 Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
fetch-depth: 0
3737
- name: ⬇️ Setup CMake
@@ -67,7 +67,7 @@ jobs:
6767
steps:
6868
- uses: ammaraskar/gcc-problem-matcher@master
6969
- name: 📥 Checkout
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
with:
7272
fetch-depth: 0
7373
- name: ⬇️ Setup CMake
@@ -103,7 +103,7 @@ jobs:
103103
steps:
104104
- uses: ammaraskar/gcc-problem-matcher@master
105105
- name: 📥 Checkout
106-
uses: actions/checkout@v4
106+
uses: actions/checkout@v5
107107
with:
108108
fetch-depth: 0
109109
- name: ⬇️ Setup CMake
@@ -137,7 +137,7 @@ jobs:
137137
steps:
138138
- uses: ammaraskar/gcc-problem-matcher@master
139139
- name: 📥 Checkout
140-
uses: actions/checkout@v4
140+
uses: actions/checkout@v5
141141
with:
142142
fetch-depth: 0
143143
- name: ⬇️ Setup CMake

.github/workflows/pre-commit-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ jobs:
55
name: pre-commit
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99
- name: pre-commit
1010
uses: pre-commit/action@v3.0.1

.github/workflows/windows.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
- uses: ammaraskar/gcc-problem-matcher@master
3636
- name: 📥 Checkout
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
fetch-depth: 0
4040
- name: ⬇️ Setup CMake
@@ -78,7 +78,7 @@ jobs:
7878
steps:
7979
- uses: ammaraskar/msvc-problem-matcher@master
8080
- name: 📥 Checkout
81-
uses: actions/checkout@v4
81+
uses: actions/checkout@v5
8282
with:
8383
fetch-depth: 0
8484
- name: ⬇️ Setup CMake
@@ -116,7 +116,7 @@ jobs:
116116
steps:
117117
- uses: ammaraskar/msvc-problem-matcher@master
118118
- name: 📥 Checkout
119-
uses: actions/checkout@v4
119+
uses: actions/checkout@v5
120120
with:
121121
fetch-depth: 0
122122
- name: ⬇️ Setup CMake
@@ -154,7 +154,7 @@ jobs:
154154
steps:
155155
- uses: ammaraskar/gcc-problem-matcher@master
156156
- name: 📥 Checkout
157-
uses: actions/checkout@v4
157+
uses: actions/checkout@v5
158158
with:
159159
fetch-depth: 0
160160
- name: ⬇️ Setup CMake
@@ -190,7 +190,7 @@ jobs:
190190
steps:
191191
- uses: ammaraskar/msvc-problem-matcher@master
192192
- name: 📥 Checkout
193-
uses: actions/checkout@v4
193+
uses: actions/checkout@v5
194194
with:
195195
fetch-depth: 0
196196
- name: ⬇️ Setup CMake

0 commit comments

Comments
 (0)