Skip to content

Commit c1e660a

Browse files
committed
Fix GHA set-output command warning
Signed-off-by: Javier Balloffet <[email protected]>
1 parent a604ad7 commit c1e660a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/rust-minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ 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+
echo "package_list=$(colcon list --names-only)" >> $GITHUB_OUTPUT
4949
5050
- name: Setup ROS environment
5151
uses: ros-tooling/[email protected]

.github/workflows/rust-stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ 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+
echo "package_list=$(colcon list --names-only)" >> $GITHUB_OUTPUT
4949
5050
- name: Setup ROS environment
5151
uses: ros-tooling/[email protected]

0 commit comments

Comments
 (0)