Skip to content

Commit dff46b1

Browse files
committed
Remove CI warning by removing set-output command
1 parent 5ef3c2a commit dff46b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/compile-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
- name: Check if API should be compiled in the core
134134
id: checkapi
135135
run: |
136-
if [[ $(grep -r api platform.txt) ]]; then echo "::set-output name=IS_API::true"; fi
136+
if [[ $(grep -r api platform.txt) ]]; then echo "IS_API=true" >> $GITHUB_OUTPUT; fi
137137
138138
- name: Install ArduinoCore-API
139139
run: rm "$GITHUB_WORKSPACE/cores/arduino/api" && mv "$GITHUB_WORKSPACE/extras/ArduinoCore-API/api" "$GITHUB_WORKSPACE/cores/arduino"

0 commit comments

Comments
 (0)