Skip to content

Commit 66c4411

Browse files
committed
update set-output cmds
1 parent 1356071 commit 66c4411

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/sync-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run: |
104104
# Use of this flag in the github-label-sync command will cause it to only check the validity of the
105105
# configuration.
106-
echo "::set-output name=flag::--dry-run"
106+
echo "flag=--dry-run" >> "$GITHUB_OUTPUT"
107107
108108
- name: Checkout repository
109109
uses: actions/checkout@v3

.github/workflows/test-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
- name: Set report artifact name
102102
id: report-artifact-name
103103
run: |
104-
echo "::set-output name=report-artifact-name::${{ github.job }}"
104+
echo "report-artifact-name=${{ github.job }}" >> "$GITHUB_OUTPUT"
105105
106106
- name: Save sketches report as workflow artifact
107107
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)