Skip to content

Commit

Permalink
Fix GHA set-output command warning (#439)
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Balloffet <[email protected]>
  • Loading branch information
jballoffet authored Dec 2, 2024
1 parent 506a60c commit 6ac2ae1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/rust-minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ jobs:
- name: Search packages in this repository
id: list_packages
run: |
echo ::set-output name=package_list::$(colcon list --names-only)
{
echo 'package_list<<EOF'
colcon list --names-only
echo EOF
} >> "$GITHUB_OUTPUT"
- name: Setup ROS environment
uses: ros-tooling/[email protected]
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/rust-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ jobs:
- name: Search packages in this repository
id: list_packages
run: |
echo ::set-output name=package_list::$(colcon list --names-only)
{
echo 'package_list<<EOF'
colcon list --names-only
echo EOF
} >> "$GITHUB_OUTPUT"
- name: Setup ROS environment
uses: ros-tooling/[email protected]
Expand Down

0 comments on commit 6ac2ae1

Please sign in to comment.