Skip to content

Commit 3d2ba95

Browse files
committed
Update actions reference to v0
Signed-off-by: eProsima <[email protected]>
1 parent 837d6fd commit 3d2ba95

File tree

48 files changed

+143
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+143
-143
lines changed

.github/workflows/build_ddspipe.yml

+17-17
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
build_dev_utils:
131131

132132
name: build_dev_utils
133-
uses: eProsima/eProsima-CI/.github/workflows/build_dev_utils.yml@main
133+
uses: eProsima/eProsima-CI/.github/workflows/build_dev_utils.yml@v0
134134
with:
135135
single_version_build: ${{ inputs.single_version_build || false }}
136136
configuration_branch: ${{ inputs.configuration_branch }}
@@ -166,28 +166,28 @@ jobs:
166166
steps:
167167

168168
- name: Sync this repository
169-
uses: eProsima/eProsima-CI/external/checkout@main
169+
uses: eProsima/eProsima-CI/external/checkout@v0
170170
with:
171171
path: src/eprosima-CI
172172

173173
- name: Install Fast DDS dependencies
174-
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@main
174+
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@v0
175175
with:
176176
cmake_build_type: ${{ matrix.cmake_build_type }}
177177

178178
- name: Install yaml cpp dependency
179-
uses: eProsima/eProsima-CI/multiplatform/install_yamlcpp@main
179+
uses: eProsima/eProsima-CI/multiplatform/install_yamlcpp@v0
180180
with:
181181
cmake_build_type: ${{ matrix.cmake_build_type }}
182182

183183
- name: Get dev-utils artifact
184-
uses: eProsima/eProsima-CI/external/download-artifact@main
184+
uses: eProsima/eProsima-CI/external/download-artifact@v0
185185
with:
186186
name: build_dev_utils_custom_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
187187
path: install
188188

189189
- name: Get colcon.meta to build artifact
190-
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@main
190+
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@v0
191191
with:
192192
source_repository_branch: ${{ inputs.configuration_branch || env.default_configuration_branch }}
193193
colcon_meta_file_path: .github/workflows/configurations/metas/${{ matrix.os }}/colcon.meta
@@ -196,21 +196,21 @@ jobs:
196196
repos_file_result: ${{ github.workspace }}/dependencies.repos
197197

198198
- name: Fetch DDS Pipe repositories
199-
uses: eProsima/eProsima-CI/multiplatform/fetch_ddspipe_manual@main
199+
uses: eProsima/eProsima-CI/multiplatform/fetch_ddspipe_manual@v0
200200
with:
201201
ddspipe_branch: ${{ inputs.ddspipe_branch || env.default_ddspipe_branch }}
202202
destination_workspace: ${{ github.workspace }}/src
203203

204204
- name: Build workspace
205-
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
205+
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
206206
with:
207207
colcon_meta_file: ${{ github.workspace }}/colcon.meta
208208
workspace: ${{ github.workspace }}
209209
workspace_dependencies: install
210210
cmake_build_type: ${{ matrix.cmake_build_type }}
211211

212212
- name: Upload binaries
213-
uses: eProsima/eProsima-CI/external/upload-artifact@main
213+
uses: eProsima/eProsima-CI/external/upload-artifact@v0
214214
with:
215215
name: ${{ env.artifact_prefix }}_custom_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
216216
path: ${{ github.workspace }}/install
@@ -244,28 +244,28 @@ jobs:
244244
steps:
245245

246246
- name: Sync this repository
247-
uses: eProsima/eProsima-CI/external/checkout@main
247+
uses: eProsima/eProsima-CI/external/checkout@v0
248248
with:
249249
path: src/eprosima-CI
250250

251251
- name: Install Fast DDS dependencies
252-
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@main
252+
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@v0
253253
with:
254254
cmake_build_type: ${{ matrix.cmake_build_type }}
255255

256256
- name: Install yaml cpp dependency
257-
uses: eProsima/eProsima-CI/multiplatform/install_yamlcpp@main
257+
uses: eProsima/eProsima-CI/multiplatform/install_yamlcpp@v0
258258
with:
259259
cmake_build_type: ${{ matrix.cmake_build_type }}
260260

261261
- name: Get dev-utils artifact
262-
uses: eProsima/eProsima-CI/external/download-artifact@main
262+
uses: eProsima/eProsima-CI/external/download-artifact@v0
263263
with:
264264
name: build_dev_utils_${{ matrix.fastdds_version }}_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
265265
path: install
266266

267267
- name: Get colcon.meta and .repos files to build artifact
268-
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@main
268+
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@v0
269269
with:
270270
source_repository_branch: ${{ inputs.configuration_branch || env.default_configuration_branch }}
271271
colcon_meta_file_path: .github/workflows/configurations/metas/${{ matrix.os }}/colcon.meta
@@ -274,21 +274,21 @@ jobs:
274274
repos_file_result: ${{ github.workspace }}/dependencies.repos
275275

276276
- name: Fetch DDS Pipe repositories with vcs-tool
277-
uses: eProsima/eProsima-CI/multiplatform/vcs_import@main
277+
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
278278
with:
279279
vcs_repos_file: ${{ github.workspace }}/dependencies.repos
280280
destination_workspace: ${{ github.workspace }}/src
281281

282282
- name: Build workspace
283-
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
283+
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
284284
with:
285285
colcon_meta_file: ${{ github.workspace }}/colcon.meta
286286
workspace: ${{ github.workspace }}
287287
workspace_dependencies: install
288288
cmake_build_type: ${{ matrix.cmake_build_type }}
289289

290290
- name: Upload binaries
291-
uses: eProsima/eProsima-CI/external/upload-artifact@main
291+
uses: eProsima/eProsima-CI/external/upload-artifact@v0
292292
with:
293293
name: ${{ env.artifact_prefix }}_${{ matrix.fastdds_version }}_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
294294
path: ${{ github.workspace }}/install

.github/workflows/build_dev_utils.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
build_fastdds:
177177

178178
name: build_fastdds
179-
uses: eProsima/eProsima-CI/.github/workflows/build_fastdds.yml@main
179+
uses: eProsima/eProsima-CI/.github/workflows/build_fastdds.yml@v0
180180
with:
181181
single_version_build: ${{ inputs.single_version_build || false }}
182182
configuration_branch: ${{ inputs.configuration_branch }}
@@ -211,23 +211,23 @@ jobs:
211211
steps:
212212

213213
- name: Sync this repository
214-
uses: eProsima/eProsima-CI/external/checkout@main
214+
uses: eProsima/eProsima-CI/external/checkout@v0
215215
with:
216216
path: src/eprosima-CI
217217

218218
- name: Install Fast DDS dependencies
219-
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@main
219+
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@v0
220220
with:
221221
cmake_build_type: ${{ matrix.cmake_build_type }}
222222

223223
- name: Get Fast DDS artifact
224-
uses: eProsima/eProsima-CI/external/download-artifact@main
224+
uses: eProsima/eProsima-CI/external/download-artifact@v0
225225
with:
226226
name: build_fastdds_custom_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
227227
path: install
228228

229229
- name: Get colcon.meta and .repos files to build artifact
230-
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@main
230+
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@v0
231231
with:
232232
source_repository_branch: ${{ inputs.configuration_branch || env.default_configuration_branch }}
233233
colcon_meta_file_path: .github/workflows/configurations/metas/${{ matrix.os }}/colcon.meta
@@ -236,21 +236,21 @@ jobs:
236236
repos_file_result: ${{ github.workspace }}/dependencies.repos
237237

238238
- name: Fetch dev-utils repositories
239-
uses: eProsima/eProsima-CI/multiplatform/fetch_dev_utils_manual@main
239+
uses: eProsima/eProsima-CI/multiplatform/fetch_dev_utils_manual@v0
240240
with:
241241
dev_utils_branch: ${{ inputs.dev_utils_branch || env.default_dev_utils_branch }}
242242
destination_workspace: ${{ github.workspace }}/src
243243

244244
- name: Build workspace
245-
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
245+
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
246246
with:
247247
colcon_meta_file: ${{ github.workspace }}/colcon.meta
248248
workspace: ${{ github.workspace }}
249249
workspace_dependencies: install
250250
cmake_build_type: ${{ matrix.cmake_build_type }}
251251

252252
- name: Upload binaries
253-
uses: eProsima/eProsima-CI/external/upload-artifact@main
253+
uses: eProsima/eProsima-CI/external/upload-artifact@v0
254254
with:
255255
name: ${{ env.artifact_prefix }}_custom_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
256256
path: ${{ github.workspace }}/install
@@ -284,23 +284,23 @@ jobs:
284284
steps:
285285

286286
- name: Sync this repository
287-
uses: eProsima/eProsima-CI/external/checkout@main
287+
uses: eProsima/eProsima-CI/external/checkout@v0
288288
with:
289289
path: src/eprosima-CI
290290

291291
- name: Install Fast DDS dependencies
292-
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@main
292+
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@v0
293293
with:
294294
cmake_build_type: ${{ matrix.cmake_build_type }}
295295

296296
- name: Get Fast DDS artifact
297-
uses: eProsima/eProsima-CI/external/download-artifact@main
297+
uses: eProsima/eProsima-CI/external/download-artifact@v0
298298
with:
299299
name: build_fastdds_${{ matrix.fastdds_version }}_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
300300
path: install
301301

302302
- name: Get colcon.meta to build artifact
303-
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@main
303+
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@v0
304304
with:
305305
source_repository_branch: ${{ inputs.configuration_branch || env.default_configuration_branch }}
306306
colcon_meta_file_path: .github/workflows/configurations/metas/${{ matrix.os }}/colcon.meta
@@ -309,21 +309,21 @@ jobs:
309309
repos_file_result: ${{ github.workspace }}/dependencies.repos
310310

311311
- name: Fetch dev-utils repositories with vcs-tool
312-
uses: eProsima/eProsima-CI/multiplatform/vcs_import@main
312+
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
313313
with:
314314
vcs_repos_file: ${{ github.workspace }}/dependencies.repos
315315
destination_workspace: ${{ github.workspace }}/src
316316

317317
- name: Build workspace
318-
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
318+
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
319319
with:
320320
colcon_meta_file: ${{ github.workspace }}/colcon.meta
321321
workspace: ${{ github.workspace }}
322322
workspace_dependencies: install
323323
cmake_build_type: ${{ matrix.cmake_build_type }}
324324

325325
- name: Upload binaries
326-
uses: eProsima/eProsima-CI/external/upload-artifact@main
326+
uses: eProsima/eProsima-CI/external/upload-artifact@v0
327327
with:
328328
name: ${{ env.artifact_prefix }}_${{ matrix.fastdds_version }}_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
329329
path: ${{ github.workspace }}/install

.github/workflows/build_fastdds.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -182,17 +182,17 @@ jobs:
182182
steps:
183183

184184
- name: Sync this repository
185-
uses: eProsima/eProsima-CI/external/checkout@main
185+
uses: eProsima/eProsima-CI/external/checkout@v0
186186
with:
187187
path: src/eprosima-CI
188188

189189
- name: Install Fast DDS dependencies
190-
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@main
190+
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@v0
191191
with:
192192
cmake_build_type: ${{ matrix.cmake_build_type }}
193193

194194
- name: Get colcon.meta file to build fastdds
195-
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@main
195+
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@v0
196196
with:
197197
source_repository_branch: ${{ inputs.configuration_branch || env.default_configuration_branch }}
198198
colcon_meta_file_path: .github/workflows/configurations/metas/${{ matrix.os }}/colcon.meta
@@ -201,22 +201,22 @@ jobs:
201201
repos_file_result: ${{ github.workspace }}/dependencies.repos
202202

203203
- name: Fetch Fast DDS repositories
204-
uses: eProsima/eProsima-CI/multiplatform/fetch_fastdds_manual@main
204+
uses: eProsima/eProsima-CI/multiplatform/fetch_fastdds_manual@v0
205205
with:
206206
foonathan_memory_vendor_branch: ${{ inputs.foonathan_memory_vendor_branch || env.default_foonathan_memory_vendor_branch }}
207207
fastcdr_branch: ${{ inputs.fastcdr_branch || env.default_fastcdr_branch }}
208208
fastdds_branch: ${{ inputs.fastdds_branch || env.default_fastdds_branch }}
209209
destination_workspace: ${{ github.workspace }}/artifact/src
210210

211211
- name: Build workspace
212-
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
212+
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
213213
with:
214214
colcon_meta_file: ${{ github.workspace }}/colcon.meta
215215
workspace: ${{ github.workspace }}/artifact
216216
cmake_build_type: ${{ matrix.cmake_build_type }}
217217

218218
- name: Upload binaries
219-
uses: eProsima/eProsima-CI/external/upload-artifact@main
219+
uses: eProsima/eProsima-CI/external/upload-artifact@v0
220220
with:
221221
name: ${{ env.artifact_prefix }}_custom_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
222222
path: ${{ github.workspace }}/artifact/install
@@ -246,17 +246,17 @@ jobs:
246246
steps:
247247

248248
- name: Sync this repository
249-
uses: eProsima/eProsima-CI/external/checkout@main
249+
uses: eProsima/eProsima-CI/external/checkout@v0
250250
with:
251251
path: src/eprosima-CI
252252

253253
- name: Install Fast DDS dependencies
254-
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@main
254+
uses: eProsima/eProsima-CI/multiplatform/install_fastdds_dependencies@v0
255255
with:
256256
cmake_build_type: ${{ matrix.cmake_build_type }}
257257

258258
- name: Get colcon.meta and .repos files to build fastdds
259-
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@main
259+
uses: eProsima/eProsima-CI/multiplatform/get_configurations_from_repo@v0
260260
with:
261261
source_repository_branch: ${{ inputs.configuration_branch || env.default_configuration_branch }}
262262
colcon_meta_file_path: .github/workflows/configurations/metas/${{ matrix.os }}/colcon.meta
@@ -265,20 +265,20 @@ jobs:
265265
repos_file_result: ${{ github.workspace }}/dependencies.repos
266266

267267
- name: Fetch Fast DDS repositories with vcs-tool
268-
uses: eProsima/eProsima-CI/multiplatform/vcs_import@main
268+
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
269269
with:
270270
vcs_repos_file: ${{ github.workspace }}/dependencies.repos
271271
destination_workspace: ${{ github.workspace }}/artifact/src
272272

273273
- name: Build workspace
274-
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
274+
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
275275
with:
276276
colcon_meta_file: ${{ github.workspace }}/colcon.meta
277277
workspace: ${{ github.workspace }}/artifact
278278
cmake_build_type: ${{ matrix.cmake_build_type }}
279279

280280
- name: Upload binaries
281-
uses: eProsima/eProsima-CI/external/upload-artifact@main
281+
uses: eProsima/eProsima-CI/external/upload-artifact@v0
282282
with:
283283
name: ${{ env.artifact_prefix }}_${{ matrix.fastdds_version }}_${{ matrix.os }}_${{ matrix.cmake_build_type }}${{ inputs.artifacts_name_postfix || env.default_artifact_postfix }}
284284
path: ${{ github.workspace }}/artifact/install

macos/install_colcon/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
steps:
77

88
- name: Install colcon
9-
uses: eProsima/eProsima-CI/macos/install_python_packages@main
9+
uses: eProsima/eProsima-CI/macos/install_python_packages@v0
1010
with:
1111
packages: 'setuptools==58.3.0 colcon-common-extensions colcon-mixin'
1212
upgrade: true

multiplatform/asan_build_test/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ runs:
4343

4444
- name: Build and test
4545
id: build_and_test
46-
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@main
46+
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@v0
4747
with:
4848
packages_names: ${{ inputs.packages_names }}
4949
colcon_meta_file: ${{ inputs.colcon_meta_file }}

multiplatform/clang_build_test/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ runs:
3232
steps:
3333

3434
- name: Build
35-
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
35+
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
3636
with:
3737
colcon_meta_file: ${{ inputs.colcon_meta_file }}
3838
colcon_build_args: '--packages-up-to ${{ inputs.packages_names }}'
@@ -41,6 +41,6 @@ runs:
4141
workspace_dependencies: ${{ inputs.workspace_dependencies }}
4242

4343
- name: Test clang
44-
uses: eProsima/eProsima-CI/multiplatform/clang_tidy_check@main
44+
uses: eProsima/eProsima-CI/multiplatform/clang_tidy_check@v0
4545
with:
4646
packages_names: ${{ inputs.packages_names }}

multiplatform/clang_tidy_check/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ runs:
2323
steps:
2424

2525
- name: Run in ubuntu
26-
uses: eProsima/eProsima-CI/ubuntu/clang_tidy_check@main
26+
uses: eProsima/eProsima-CI/ubuntu/clang_tidy_check@v0
2727
if: runner.os == 'Linux'
2828
with:
2929
build_directory: ${{ inputs.build_directory }}
3030
packages_names: ${{ inputs.packages_names }}
3131
result_file_name: ${{ inputs.result_file_name }}
3232

3333
- name: Run in windows
34-
uses: eProsima/eProsima-CI/windows/clang_tidy_check@main
34+
uses: eProsima/eProsima-CI/windows/clang_tidy_check@v0
3535
if: runner.os == 'Windows'
3636
with:
3737
build_directory: ${{ inputs.build_directory }}

0 commit comments

Comments
 (0)