Skip to content

Commit

Permalink
Set actions versions to v0.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: EduPonz <[email protected]>
  • Loading branch information
EduPonz committed Feb 20, 2024
1 parent b8277cd commit 19ca401
Show file tree
Hide file tree
Showing 44 changed files with 99 additions and 99 deletions.
2 changes: 1 addition & 1 deletion macos/install_colcon/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:

- name: Install colcon
uses: eProsima/eProsima-CI/macos/install_python_packages@main
uses: eProsima/eProsima-CI/macos/install_python_packages@v0
with:
packages: 'setuptools==58.3.0 colcon-common-extensions colcon-mixin'
upgrade: false
Expand Down
2 changes: 1 addition & 1 deletion multiplatform/asan_build_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:

- name: Build and test
id: build_and_test
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@main
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@v0
with:
packages_names: ${{ inputs.packages_names }}
colcon_meta_file: ${{ inputs.colcon_meta_file }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/clang_build_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
steps:

- name: Build
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
with:
colcon_meta_file: ${{ inputs.colcon_meta_file }}
colcon_build_args: '--packages-up-to ${{ inputs.packages_names }}'
Expand All @@ -41,6 +41,6 @@ runs:
workspace_dependencies: ${{ inputs.workspace_dependencies }}

- name: Test clang
uses: eProsima/eProsima-CI/multiplatform/clang_tidy_check@main
uses: eProsima/eProsima-CI/multiplatform/clang_tidy_check@v0
with:
packages_names: ${{ inputs.packages_names }}
4 changes: 2 additions & 2 deletions multiplatform/clang_tidy_check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/clang_tidy_check@main
uses: eProsima/eProsima-CI/ubuntu/clang_tidy_check@v0
if: runner.os == 'Linux'
with:
build_directory: ${{ inputs.build_directory }}
packages_names: ${{ inputs.packages_names }}
result_file_name: ${{ inputs.result_file_name }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/clang_tidy_check@main
uses: eProsima/eProsima-CI/windows/clang_tidy_check@v0
if: runner.os == 'Windows'
with:
build_directory: ${{ inputs.build_directory }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/colcon_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ runs:
steps:

- name: Run in ubuntu or macOS
uses: eProsima/eProsima-CI/ubuntu/colcon_build@main
uses: eProsima/eProsima-CI/ubuntu/colcon_build@v0
if: runner.os == 'Linux' || runner.os == 'macOS'
with:
colcon_meta_file: ${{ inputs.colcon_meta_file }}
Expand All @@ -61,7 +61,7 @@ runs:
cmake_build_type: ${{ inputs.cmake_build_type }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/colcon_build@main
uses: eProsima/eProsima-CI/windows/colcon_build@v0
if: runner.os == 'Windows'
with:
colcon_meta_file: ${{ inputs.colcon_meta_file }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/colcon_build_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
steps:

- name: Build
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
with:
colcon_meta_file: ${{ inputs.colcon_meta_file }}
colcon_build_args: '--packages-up-to ${{ inputs.packages_names }}'
Expand All @@ -58,7 +58,7 @@ runs:

- name: Test
id: test
uses: eProsima/eProsima-CI/multiplatform/colcon_test@main
uses: eProsima/eProsima-CI/multiplatform/colcon_test@v0
with:
workspace: ${{ inputs.workspace }}
packages_names: ${{ inputs.packages_names }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/colcon_build_test_flaky/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
steps:

- name: Build
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
with:
colcon_meta_file: ${{ inputs.colcon_meta_file }}
colcon_build_args: '--packages-up-to ${{ inputs.packages_names }}'
Expand All @@ -52,7 +52,7 @@ runs:

- name: Test
id: test
uses: eProsima/eProsima-CI/multiplatform/colcon_test@main
uses: eProsima/eProsima-CI/multiplatform/colcon_test@v0
with:
workspace: ${{ inputs.workspace }}
packages_names: ${{ inputs.packages_names }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/colcon_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ runs:

- name: Run in ubuntu or macOS
id: test_ubuntu_mac
uses: eProsima/eProsima-CI/ubuntu/colcon_test@main
uses: eProsima/eProsima-CI/ubuntu/colcon_test@v0
if: runner.os == 'Linux' || runner.os == 'macOS'
with:
colcon_test_args: ${{ inputs.colcon_test_args }}
Expand All @@ -69,7 +69,7 @@ runs:

- name: Run in windows
id: test_windows
uses: eProsima/eProsima-CI/windows/colcon_test@main
uses: eProsima/eProsima-CI/windows/colcon_test@v0
if: runner.os == 'Windows'
with:
colcon_test_args: ${{ inputs.colcon_test_args }}
Expand Down
2 changes: 1 addition & 1 deletion multiplatform/download_dependency/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
# However, looking for the id previously allows to call this action without secret_token

- name: Download dependency
uses: eProsima/eProsima-CI/external/action-download-artifact@main
uses: eProsima/eProsima-CI/external/action-download-artifact@v0
with:
name: ${{ inputs.artifact_name }}
workflow: ${{ inputs.workflow_source }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/fetch_ddspipe_manual/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/fetch_ddspipe_manual@main
uses: eProsima/eProsima-CI/ubuntu/fetch_ddspipe_manual@v0
if: runner.os == 'Linux'
with:
ddspipe_branch: ${{ inputs.ddspipe_branch }}
destination_workspace: ${{ inputs.destination_workspace }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/fetch_ddspipe_manual@main
uses: eProsima/eProsima-CI/windows/fetch_ddspipe_manual@v0
if: runner.os == 'Windows'
with:
ddspipe_branch: ${{ inputs.ddspipe_branch }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/fetch_dev_utils_manual/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/fetch_dev_utils_manual@main
uses: eProsima/eProsima-CI/ubuntu/fetch_dev_utils_manual@v0
if: runner.os == 'Linux'
with:
dev_utils_branch: ${{ inputs.dev_utils_branch }}
destination_workspace: ${{ inputs.destination_workspace }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/fetch_dev_utils_manual@main
uses: eProsima/eProsima-CI/windows/fetch_dev_utils_manual@v0
if: runner.os == 'Windows'
with:
dev_utils_branch: ${{ inputs.dev_utils_branch }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/fetch_fastdds_manual/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/fetch_fastdds_manual@main
uses: eProsima/eProsima-CI/ubuntu/fetch_fastdds_manual@v0
if: runner.os == 'Linux'
with:
foonathan_memory_vendor_branch: ${{ inputs.foonathan_memory_vendor_branch }}
Expand All @@ -37,7 +37,7 @@ runs:
destination_workspace: ${{ inputs.destination_workspace }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/fetch_fastdds_manual@main
uses: eProsima/eProsima-CI/windows/fetch_fastdds_manual@v0
if: runner.os == 'Windows'
with:
foonathan_memory_vendor_branch: ${{ inputs.foonathan_memory_vendor_branch }}
Expand Down
6 changes: 3 additions & 3 deletions multiplatform/generate_dependency_artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,21 +36,21 @@ runs:
steps:

- name: Fetch repositories
uses: eProsima/eProsima-CI/multiplatform/vcs_import@main
uses: eProsima/eProsima-CI/multiplatform/vcs_import@v0
with:
vcs_repos_file: ${{ inputs.vcs_repos_file }}
destination_workspace: ${{ inputs.workspace }}/src

- name: Build workspace
uses: eProsima/eProsima-CI/multiplatform/colcon_build@main
uses: eProsima/eProsima-CI/multiplatform/colcon_build@v0
with:
colcon_meta_file: ${{ inputs.colcon_meta_file }}
workspace: ${{ inputs.workspace }}
workspace_dependencies: ${{ inputs.workspace_dependencies }}
cmake_build_type: ${{ inputs.cmake_build_type }}

- name: Upload binaries
uses: eProsima/eProsima-CI/external/upload-artifact@main
uses: eProsima/eProsima-CI/external/upload-artifact@v0
with:
name: ${{ inputs.artifact_name }}
path: ${{ inputs.workspace }}/install
4 changes: 2 additions & 2 deletions multiplatform/get_configurations_from_repo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ runs:
steps:

- name: Get colcon.meta file
uses: eProsima/eProsima-CI/multiplatform/get_file_from_repo@main
uses: eProsima/eProsima-CI/multiplatform/get_file_from_repo@v0
with:
source_repository_branch: ${{ inputs.source_repository_branch }}
source_repository: ${{ inputs.source_repository }}
file_name: ${{ inputs.colcon_meta_file_path }}
file_result: ${{ inputs.colcon_meta_file_result }}

- name: Get dependencies.repos file
uses: eProsima/eProsima-CI/multiplatform/get_file_from_repo@main
uses: eProsima/eProsima-CI/multiplatform/get_file_from_repo@v0
with:
source_repository_branch: ${{ inputs.source_repository_branch }}
source_repository: ${{ inputs.source_repository }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/get_file_from_repo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/get_file_from_repo@main
uses: eProsima/eProsima-CI/ubuntu/get_file_from_repo@v0
if: runner.os == 'Linux'
with:
source_repository_branch: ${{ inputs.source_repository_branch }}
Expand All @@ -36,7 +36,7 @@ runs:
file_result: ${{ inputs.file_result }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/get_file_from_repo@main
uses: eProsima/eProsima-CI/windows/get_file_from_repo@v0
if: runner.os == 'Windows'
with:
source_repository_branch: ${{ inputs.source_repository_branch }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/get_workflow_id/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ runs:
steps:

- name: Install in ubuntu
uses: eProsima/eProsima-CI/ubuntu/get_workflow_id@main
uses: eProsima/eProsima-CI/ubuntu/get_workflow_id@v0
if: runner.os == 'Linux'
with:
workflow_source: ${{ inputs.workflow_source }}
Expand All @@ -50,7 +50,7 @@ runs:
secret_token: ${{ inputs.secret_token }}

- name: Install in windows
uses: eProsima/eProsima-CI/windows/get_workflow_id@main
uses: eProsima/eProsima-CI/windows/get_workflow_id@v0
if: runner.os == 'Windows'
with:
workflow_source: ${{ inputs.workflow_source }}
Expand Down
6 changes: 3 additions & 3 deletions multiplatform/install_colcon/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/install_colcon@main
uses: eProsima/eProsima-CI/ubuntu/install_colcon@v0
if: runner.os == 'Linux'

- name: Run in macOS
uses: eProsima/eProsima-CI/macos/install_colcon@main
uses: eProsima/eProsima-CI/macos/install_colcon@v0
if: runner.os == 'macOS'

- name: Run in windows
uses: eProsima/eProsima-CI/windows/install_colcon@main
uses: eProsima/eProsima-CI/windows/install_colcon@v0
if: runner.os == 'Windows'
4 changes: 2 additions & 2 deletions multiplatform/install_fastdds_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ runs:
steps:

- name: Install in ubuntu
uses: eProsima/eProsima-CI/ubuntu/install_fastdds_dependencies@main
uses: eProsima/eProsima-CI/ubuntu/install_fastdds_dependencies@v0
with:
cmake_build_type: ${{ inputs.cmake_build_type }}
if: runner.os == 'Linux'

- name: Install in windows
uses: eProsima/eProsima-CI/windows/install_fastdds_dependencies@main
uses: eProsima/eProsima-CI/windows/install_fastdds_dependencies@v0
with:
cmake_build_type: ${{ inputs.cmake_build_type }}
if: runner.os == 'Windows'
4 changes: 2 additions & 2 deletions multiplatform/install_gtest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ runs:
steps:

- name: Run in ubuntu or macOS
uses: eProsima/eProsima-CI/ubuntu/install_gtest@main
uses: eProsima/eProsima-CI/ubuntu/install_gtest@v0
if: runner.os == 'Linux' || runner.os == 'macOS'
with:
cmake_build_type: ${{ inputs.cmake_build_type }}
version: ${{ inputs.version }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/install_gtest@main
uses: eProsima/eProsima-CI/windows/install_gtest@v0
if: runner.os == 'Windows'
with:
cmake_build_type: ${{ inputs.cmake_build_type }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/install_openssl/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/install_openssl@main
uses: eProsima/eProsima-CI/ubuntu/install_openssl@v0
if: runner.os == 'Linux'

- name: Run in windows
uses: eProsima/eProsima-CI/windows/install_openssl@main
uses: eProsima/eProsima-CI/windows/install_openssl@v0
if: runner.os == 'Windows'
6 changes: 3 additions & 3 deletions multiplatform/install_python_packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/install_python_packages@main
uses: eProsima/eProsima-CI/ubuntu/install_python_packages@v0
if: runner.os == 'Linux'
with:
packages: ${{ inputs.packages }}
upgrade: ${{ inputs.upgrade }}
requirements_file_name: ${{ inputs.requirements_file_name }}

- name: Run in macOS
uses: eProsima/eProsima-CI/macos/install_python_packages@main
uses: eProsima/eProsima-CI/macos/install_python_packages@v0
if: runner.os == 'macOS'
with:
packages: ${{ inputs.packages }}
upgrade: ${{ inputs.upgrade }}
requirements_file_name: ${{ inputs.requirements_file_name }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/install_python_packages@main
uses: eProsima/eProsima-CI/windows/install_python_packages@v0
if: runner.os == 'Windows'
with:
packages: ${{ inputs.packages }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/install_yamlcpp/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ runs:
steps:

- name: Run in ubuntu
uses: eProsima/eProsima-CI/ubuntu/install_yamlcpp@main
uses: eProsima/eProsima-CI/ubuntu/install_yamlcpp@v0
if: runner.os == 'Linux'
with:
cmake_build_type: ${{ inputs.cmake_build_type }}
version: ${{ inputs.version }}

- name: Run in windows
uses: eProsima/eProsima-CI/windows/install_yamlcpp@main
uses: eProsima/eProsima-CI/windows/install_yamlcpp@v0
if: runner.os == 'Windows'
with:
cmake_build_type: ${{ inputs.cmake_build_type }}
Expand Down
4 changes: 2 additions & 2 deletions multiplatform/junit_summary/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:

- name: Run in ubuntu or macOS
if: runner.os == 'Linux' || runner.os == 'macOS'
uses: eProsima/eProsima-CI/ubuntu/junit_summary@main
uses: eProsima/eProsima-CI/ubuntu/junit_summary@v0
with:
junit_reports_dir: ${{ inputs.junit_reports_dir }}
print_summary: ${{ inputs.print_summary }}
Expand All @@ -42,7 +42,7 @@ runs:

- name: Run in windows
if: runner.os == 'Windows'
uses: eProsima/eProsima-CI/windows/junit_summary@main
uses: eProsima/eProsima-CI/windows/junit_summary@v0
with:
junit_reports_dir: ${{ inputs.junit_reports_dir }}
print_summary: ${{ inputs.print_summary }}
Expand Down
2 changes: 1 addition & 1 deletion multiplatform/tsan_build_test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:

- name: Build and test
id: build_and_test
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@main
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@v0
with:
packages_names: ${{ inputs.packages_names }}
colcon_meta_file: ${{ inputs.colcon_meta_file }}
Expand Down
Loading

0 comments on commit 19ca401

Please sign in to comment.