Skip to content

Commit 6ac2ae1

Browse files
authored
Fix GHA set-output command warning (#439)
Signed-off-by: Javier Balloffet <[email protected]>
1 parent 506a60c commit 6ac2ae1

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/rust-minimal.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ jobs:
4545
- name: Search packages in this repository
4646
id: list_packages
4747
run: |
48-
echo ::set-output name=package_list::$(colcon list --names-only)
48+
{
49+
echo 'package_list<<EOF'
50+
colcon list --names-only
51+
echo EOF
52+
} >> "$GITHUB_OUTPUT"
4953
5054
- name: Setup ROS environment
5155
uses: ros-tooling/[email protected]

.github/workflows/rust-stable.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ jobs:
4545
- name: Search packages in this repository
4646
id: list_packages
4747
run: |
48-
echo ::set-output name=package_list::$(colcon list --names-only)
48+
{
49+
echo 'package_list<<EOF'
50+
colcon list --names-only
51+
echo EOF
52+
} >> "$GITHUB_OUTPUT"
4953
5054
- name: Setup ROS environment
5155
uses: ros-tooling/[email protected]

0 commit comments

Comments
 (0)