3131 runs-on : ubuntu-latest
3232 steps :
3333 - name : Checkout repository
34- uses : actions/checkout@v4
34+ uses : actions/checkout@v5
3535 with :
3636 fetch-depth : 0 # OR "2" -> To retrieve the preceding commit.
3737 - name : Get changed files in the src folder
@@ -120,7 +120,7 @@ jobs:
120120 (github.event_name == 'release')
121121
122122 steps :
123- - uses : actions/checkout@v4
123+ - uses : actions/checkout@v5
124124 - name : Set up Python
125125 uses : actions/setup-python@v5
126126 with :
@@ -157,7 +157,7 @@ jobs:
157157 - " 3.11"
158158 - " 3.12"
159159 steps :
160- - uses : actions/checkout@v4
160+ - uses : actions/checkout@v5
161161 - name : Set up Python ${{ matrix.py }}
162162 uses : actions/setup-python@v5
163163 with :
@@ -198,7 +198,7 @@ jobs:
198198 (github.event_name == 'release')
199199
200200 steps :
201- - uses : actions/checkout@v4
201+ - uses : actions/checkout@v5
202202 with :
203203 fetch-depth : 0 # Shallow clones should be disabled for a better relevancy of analysis
204204 - name : SonarCloud Scan
@@ -227,7 +227,7 @@ jobs:
227227
228228 steps :
229229 - name : Checkout code
230- uses : actions/checkout@v4
230+ uses : actions/checkout@v5
231231 - name : Set up Python
232232 uses : actions/setup-python@v5
233233 with :
@@ -262,7 +262,7 @@ jobs:
262262 security-events : write
263263 steps :
264264 - name : Checkout repository
265- uses : actions/checkout@v4
265+ uses : actions/checkout@v5
266266
267267 # Initializes the CodeQL tools for scanning.
268268 - name : Initialize CodeQL
@@ -284,7 +284,7 @@ jobs:
284284 (github.event_name == 'push' && (startsWith(github.ref, 'refs/tags') || contains(github.ref, 'main'))) ||
285285 (github.event_name == 'release')
286286 steps :
287- - uses : actions/checkout@v4
287+ - uses : actions/checkout@v5
288288 with :
289289 clean : true
290290 - name : Set up Python 3.12
@@ -317,7 +317,7 @@ jobs:
317317 (github.event_name == 'release')
318318 runs-on : ubuntu-latest
319319 steps :
320- - uses : actions/checkout@v4
320+ - uses : actions/checkout@v5
321321 with :
322322 fetch-depth : 0
323323 - name : Set up Python 3.12
@@ -373,7 +373,7 @@ jobs:
373373 - " 3.11"
374374 - " 3.12"
375375 steps :
376- - uses : actions/checkout@v4
376+ - uses : actions/checkout@v5
377377 with :
378378 path : ./repo
379379 - name : Set up Python ${{ matrix.py }}
@@ -424,7 +424,7 @@ jobs:
424424 permissions :
425425 id-token : write
426426 steps :
427- - uses : actions/checkout@v4
427+ - uses : actions/checkout@v5
428428 - name : Set up Python
429429 uses : actions/setup-python@v5
430430 with :
@@ -449,7 +449,7 @@ jobs:
449449 startsWith(github.ref, 'refs/tags') && !(contains(github.ref, 'gh-pages') || contains(github.ref, 'docs') || contains(github.ref, 'dev-'))
450450 ) || github.event_name == 'release'
451451 steps :
452- - uses : actions/checkout@v4
452+ - uses : actions/checkout@v5
453453 with :
454454 fetch-depth : 0
455455 - name : Set up Python 3.12
0 commit comments