Skip to content

Commit 74c2fbc

Browse files
committed
Replace set_uotput method
Signed-off-by: Xiaodong Li <xiaodong.li@intel.com>
1 parent 675b479 commit 74c2fbc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

devops/actions/clang-format-SYCLomatic/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ runs:
3535
echo "$CHANGED_FILES"
3636
3737
# Set the output for the next steps
38-
echo "::set-output name=all_changed_files::$CHANGED_FILES"
38+
echo "all_changed_files=$CHANGED_FILES" >> $GITHUB_ENV
3939
4040
- name: List Files
4141
shell: bash
4242
env:
43-
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
43+
CHANGED_FILES: ${{ env.all_changed_files }}
4444
run: |
4545
pattern_to_exclude_from_clang=".*clang/test/dpct"
4646
files_to_be_check=""

0 commit comments

Comments
 (0)