Skip to content

Commit 8ef4106

Browse files
authored
Merge pull request #91 from 2bndy5/fix-86
update set-output cmds
2 parents 1356071 + 66c4411 commit 8ef4106

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/sync-labels.yml

+1-1
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

Diff for: .github/workflows/test-integration.yml

+1-1
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)