24
24
# For running this job we need to manually trigger the CI and set the variable
25
25
if : ${{ github.event.inputs.trigger_test_all_docker == 'parsec-service-test-all' }}
26
26
steps :
27
- - uses : actions/checkout@v3
27
+ - uses : actions/checkout@v4
28
28
- name : Build and Export Docker Image
29
29
uses : ./.github/actions/build_export_docker
30
30
with :
35
35
# For running this job we need to manually trigger the CI and set the variable
36
36
if : ${{ github.event.inputs.trigger_test_cross_docker == 'parsec-service-test-cross-compile' }}
37
37
steps :
38
- - uses : actions/checkout@v3
38
+ - uses : actions/checkout@v4
39
39
- name : Build and Export Docker Image
40
40
uses : ./.github/actions/build_export_docker
41
41
with :
47
47
if : ${{ always() }}
48
48
needs : [build-and-export-test-all-docker]
49
49
steps :
50
- - uses : actions/checkout@v3
50
+ - uses : actions/checkout@v4
51
51
- name : Run the container to execute the test script
52
52
uses : ./.github/actions/ci_script
53
53
with :
59
59
if : ${{ always() }}
60
60
needs : [build-and-export-test-all-docker]
61
61
steps :
62
- - uses : actions/checkout@v3
62
+ - uses : actions/checkout@v4
63
63
- name : Run the container to execute the test script
64
64
uses : ./.github/actions/ci_script
65
65
with :
72
72
if : ${{ always() }}
73
73
needs : [build-and-export-test-all-docker]
74
74
steps :
75
- - uses : actions/checkout@v3
75
+ - uses : actions/checkout@v4
76
76
- name : Run the container to execute the test script
77
77
uses : ./.github/actions/ci_script
78
78
with :
84
84
if : ${{ always() }}
85
85
needs : [build-and-export-test-all-docker]
86
86
steps :
87
- - uses : actions/checkout@v3
87
+ - uses : actions/checkout@v4
88
88
- name : Run the container to execute the test script
89
89
uses : ./.github/actions/ci_script
90
90
with :
96
96
if : ${{ always() }}
97
97
needs : [build-and-export-test-all-docker]
98
98
steps :
99
- - uses : actions/checkout@v3
99
+ - uses : actions/checkout@v4
100
100
- name : Run the container to execute the test script
101
101
uses : ./.github/actions/ci_script
102
102
with :
@@ -108,7 +108,7 @@ jobs:
108
108
if : ${{ always() }}
109
109
needs : [build-and-export-test-all-docker]
110
110
steps :
111
- - uses : actions/checkout@v3
111
+ - uses : actions/checkout@v4
112
112
- name : Run the container to execute the test script
113
113
uses : ./.github/actions/ci_script
114
114
with :
@@ -120,7 +120,7 @@ jobs:
120
120
if : ${{ always() }}
121
121
needs : [build-and-export-test-all-docker]
122
122
steps :
123
- - uses : actions/checkout@v3
123
+ - uses : actions/checkout@v4
124
124
- name : Run the container to execute the test script
125
125
uses : ./.github/actions/ci_script
126
126
with :
@@ -132,7 +132,7 @@ jobs:
132
132
if : ${{ always() }}
133
133
needs : [build-and-export-test-all-docker]
134
134
steps :
135
- - uses : actions/checkout@v3
135
+ - uses : actions/checkout@v4
136
136
- name : Run the container to execute the test script
137
137
uses : ./.github/actions/ci_script
138
138
with :
@@ -144,7 +144,7 @@ jobs:
144
144
if : ${{ always() }}
145
145
needs : [build-and-export-test-all-docker]
146
146
steps :
147
- - uses : actions/checkout@v2
147
+ - uses : actions/checkout@v4
148
148
- name : Load Docker
149
149
uses : ./.github/actions/load_docker
150
150
if : ${{ env.TEST_ALL_DOCKER_IMAGE == 'parsec-service-test-all' }}
@@ -166,7 +166,7 @@ jobs:
166
166
if : ${{ always() }}
167
167
needs : [build-and-export-test-all-docker]
168
168
steps :
169
- - uses : actions/checkout@v3
169
+ - uses : actions/checkout@v4
170
170
- name : Run the container to execute the test script
171
171
uses : ./.github/actions/ci_script
172
172
with :
@@ -179,7 +179,7 @@ jobs:
179
179
if : ${{ always() }}
180
180
needs : [build-and-export-cross-compile-docker]
181
181
steps :
182
- - uses : actions/checkout@v3
182
+ - uses : actions/checkout@v4
183
183
- name : Load Docker
184
184
uses : ./.github/actions/load_docker
185
185
if : ${{ env.TEST_CROSS_DOCKER_IMAGE == 'parsec-service-test-cross-compile' }}
@@ -197,7 +197,7 @@ jobs:
197
197
name : Check links
198
198
runs-on : ubuntu-latest
199
199
steps :
200
- - uses : actions/checkout@v2
200
+ - uses : actions/checkout@v4
201
201
- name : Link Checker
202
202
uses : peter-evans/link-checker@v1
203
203
with :
@@ -209,14 +209,14 @@ jobs:
209
209
name : " Run cargo deny"
210
210
runs-on : ubuntu-latest
211
211
steps :
212
- - uses : actions/checkout@v3
213
- - uses : EmbarkStudios/cargo-deny-action@v1
212
+ - uses : actions/checkout@v4
213
+ - uses : EmbarkStudios/cargo-deny-action@v2
214
214
215
215
mismatcher :
216
216
name : Check for mismatched dependencies (those that have more than one version)
217
217
runs-on : ubuntu-latest
218
218
steps :
219
- - uses : actions/checkout@v2
219
+ - uses : actions/checkout@v4
220
220
with :
221
221
ref : " ${{ github.event.inputs.rev }}"
222
222
- name : Run the container to execute the dependency mismatcher script
0 commit comments