Skip to content

Commit 016decd

Browse files
committed
Remove references to remote branches
Signed-off-by: Carlosespicur <carlosespicur@proton.me>
1 parent 2daf8ad commit 016decd

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/actions/install_python_packages/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
steps:
2323

2424
- name: Install required APT packages
25-
uses: micro-ROS/micro_ros_tivac_launchpad_app/.github/actions/install_apt_packages@hotfix/fix-rsync-errors
25+
uses: ./.github/actions/install_apt_packages
2626
with:
2727
packages: "python${{ inputs.python-version }}-venv"
2828
use-sudo: ${{ inputs.use-sudo }}

.github/actions/install_sdk/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
steps:
2323

2424
- name: Install APT packages
25-
uses: micro-ROS/micro_ros_tivac_launchpad_app/.github/actions/install_apt_packages@hotfix/fix-rsync-errors
25+
uses: ./.github/actions/install_apt_packages
2626
with:
2727
packages: "curl p7zip"
2828
use-sudo: ${{ inputs.use-sudo }}

.github/workflows/reusable-ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,14 @@ jobs:
1919
fail-fast: false
2020
steps:
2121

22+
- name: Sync repository
23+
uses: actions/checkout@v5
24+
with:
25+
ref: ${{ inputs.branch }}
26+
submodules: recursive
27+
2228
- name: Install APT packages
23-
uses: micro-ROS/micro_ros_tivac_launchpad_app/.github/actions/install_apt_packages@hotfix/fix-rsync-errors
29+
uses: ./.github/actions/install_apt_packages
2430
with:
2531
packages: "build-essential cmake gcc-arm-none-eabi rsync"
2632
use-sudo: "true"
@@ -32,20 +38,14 @@ jobs:
3238
python-version: "3.12"
3339

3440
- name: Install required python packages
35-
uses: micro-ROS/micro_ros_tivac_launchpad_app/.github/actions/install_python_packages@hotfix/fix-rsync-errors
41+
uses: ./.github/actions/install_python_packages
3642
with:
3743
packages: "catkin_pkg lark-parser empy colcon-common-extensions"
3844
python-version: "3.12"
3945
use-sudo: "true"
4046

41-
- name: Sync repository
42-
uses: actions/checkout@v5
43-
with:
44-
ref: ${{ inputs.branch }}
45-
submodules: recursive
46-
4747
- name: Install TivaWare SDK
48-
uses: micro-ROS/micro_ros_tivac_launchpad_app/.github/actions/install_sdk@hotfix/fix-rsync-errors
48+
uses: ./.github/actions/install_sdk
4949
with:
5050
sdk_version: "2.1.4.178"
5151
install_path: "${{ github.workspace }}/tivaware_c_series"

0 commit comments

Comments
 (0)