Skip to content

Commit 7f5090e

Browse files
committed
Migrate to new method for setting output for changed files
1 parent 8e02ae1 commit 7f5090e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set Job Output
3737
id: set-output
3838
run: |
39-
echo "::set-output name=run-tests::${{ steps.changed-files.outputs.any_modified }}"
39+
echo "run-tests=${{ steps.changed-files.outputs.any_modified }}" >> $GITHUB_OUTPUT
4040
4141
- name: Set Exit Status
4242
if: always()

.github/workflows/templates/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set Job Output
3737
id: set-output
3838
run: |
39-
echo "::set-output name=run-tests::${{ steps.changed-files.outputs.any_modified }}"
39+
echo "run-tests=${{ steps.changed-files.outputs.any_modified }}" >> $GITHUB_OUTPUT
4040
4141
- name: Set Exit Status
4242
if: always()

0 commit comments

Comments
 (0)