Skip to content

Commit

Permalink
Fix GHA set-output command warning
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Balloffet <javier.balloffet@gmail.com>
  • Loading branch information
jballoffet committed Nov 29, 2024
1 parent a604ad7 commit c1e660a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust-minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Search packages in this repository
id: list_packages
run: |
echo ::set-output name=package_list::$(colcon list --names-only)
echo "package_list=$(colcon list --names-only)" >> $GITHUB_OUTPUT
- name: Setup ROS environment
uses: ros-tooling/setup-ros@v0.7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Search packages in this repository
id: list_packages
run: |
echo ::set-output name=package_list::$(colcon list --names-only)
echo "package_list=$(colcon list --names-only)" >> $GITHUB_OUTPUT
- name: Setup ROS environment
uses: ros-tooling/setup-ros@v0.7
Expand Down

0 comments on commit c1e660a

Please sign in to comment.