17
17
name : Search for forbidden patterns
18
18
runs-on : ubuntu-latest
19
19
steps :
20
- - uses : actions/checkout@v4
20
+ - uses : actions/checkout@v5
21
21
- name : Add SSH private keys for submodule repositories
22
22
uses : webfactory/ssh-agent@a6f90b1f127823b31d4d4a8d96047790581349bd # v0.9.1
23
23
if : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'element-hq/element-x-android' }}
33
33
name : Search for invalid screenshot files
34
34
runs-on : ubuntu-latest
35
35
steps :
36
- - uses : actions/checkout@v4
36
+ - uses : actions/checkout@v5
37
37
- name : Set up Python 3.12
38
38
uses : actions/setup-python@v5
39
39
with :
45
45
name : Search for invalid dependencies
46
46
runs-on : ubuntu-latest
47
47
steps :
48
- - uses : actions/checkout@v4
48
+ - uses : actions/checkout@v5
49
49
- name : Use JDK 21
50
50
uses : actions/setup-java@v4
51
51
with :
71
71
group : ${{ github.ref == 'refs/heads/main' && format('check-konsist-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('check-konsist-develop-{0}', github.sha) || format('check-konsist-{0}', github.ref) }}
72
72
cancel-in-progress : true
73
73
steps :
74
- - uses : actions/checkout@v4
74
+ - uses : actions/checkout@v5
75
75
with :
76
76
# Ensure we are building the branch and not the branch after being merged on develop
77
77
# https://github.com/actions/checkout/issues/881
@@ -111,7 +111,7 @@ jobs:
111
111
group : ${{ github.ref == 'refs/heads/main' && format('check-lint-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('check-lint-develop-{0}', github.sha) || format('check-lint-{0}', github.ref) }}
112
112
cancel-in-progress : true
113
113
steps :
114
- - uses : actions/checkout@v4
114
+ - uses : actions/checkout@v5
115
115
with :
116
116
# Ensure we are building the branch and not the branch after being merged on develop
117
117
# https://github.com/actions/checkout/issues/881
@@ -155,7 +155,7 @@ jobs:
155
155
group : ${{ github.ref == 'refs/heads/main' && format('check-detekt-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('check-detekt-develop-{0}', github.sha) || format('check-detekt-{0}', github.ref) }}
156
156
cancel-in-progress : true
157
157
steps :
158
- - uses : actions/checkout@v4
158
+ - uses : actions/checkout@v5
159
159
with :
160
160
# Ensure we are building the branch and not the branch after being merged on develop
161
161
# https://github.com/actions/checkout/issues/881
@@ -195,7 +195,7 @@ jobs:
195
195
group : ${{ github.ref == 'refs/heads/main' && format('check-ktlint-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('check-ktlint-develop-{0}', github.sha) || format('check-ktlint-{0}', github.ref) }}
196
196
cancel-in-progress : true
197
197
steps :
198
- - uses : actions/checkout@v4
198
+ - uses : actions/checkout@v5
199
199
with :
200
200
# Ensure we are building the branch and not the branch after being merged on develop
201
201
# https://github.com/actions/checkout/issues/881
@@ -235,7 +235,7 @@ jobs:
235
235
group : ${{ github.ref == 'refs/heads/main' && format('check-knit-main-{0}', github.sha) || github.ref == 'refs/heads/develop' && format('check-knit-develop-{0}', github.sha) || format('check-knit-{0}', github.ref) }}
236
236
cancel-in-progress : true
237
237
steps :
238
- - uses : actions/checkout@v4
238
+ - uses : actions/checkout@v5
239
239
with :
240
240
# Ensure we are building the branch and not the branch after being merged on develop
241
241
# https://github.com/actions/checkout/issues/881
@@ -266,7 +266,7 @@ jobs:
266
266
name : Check shell scripts
267
267
runs-on : ubuntu-latest
268
268
steps :
269
- - uses : actions/checkout@v4
269
+ - uses : actions/checkout@v5
270
270
- name : Run shellcheck
271
271
272
272
with :
@@ -278,7 +278,7 @@ jobs:
278
278
needs : [konsist, lint, ktlint, detekt]
279
279
if : ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'element-hq/element-x-android' }}
280
280
steps :
281
- - uses : actions/checkout@v4
281
+ - uses : actions/checkout@v5
282
282
with :
283
283
# Ensure we are building the branch and not the branch after being merged on develop
284
284
# https://github.com/actions/checkout/issues/881
0 commit comments