Skip to content

Commit 11e4fcb

Browse files
chore: sync files (#3190)
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
1 parent 1ed2648 commit 11e4fcb

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/clang-tidy-pr-comments-manually.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
3131
id: set-variables
3232
run: |
33-
echo ::set-output name=pr-id::"$(cat /tmp/clang-tidy-result/pr-id.txt)"
34-
echo ::set-output name=pr-head-repo::"$(cat /tmp/clang-tidy-result/pr-head-repo.txt)"
35-
echo ::set-output name=pr-head-ref::"$(cat /tmp/clang-tidy-result/pr-head-ref.txt)"
33+
echo "pr-id=$(cat /tmp/clang-tidy-result/pr-id.txt)" >> $GITHUB_OUTPUT
34+
echo "pr-head-repo=$(cat /tmp/clang-tidy-result/pr-head-repo.txt)" >> $GITHUB_OUTPUT
35+
echo "pr-head-ref=$(cat /tmp/clang-tidy-result/pr-head-ref.txt)" >> $GITHUB_OUTPUT
3636
3737
- name: Check out PR head
3838
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}

.github/workflows/clang-tidy-pr-comments.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}
3232
id: set-variables
3333
run: |
34-
echo ::set-output name=pr-id::"$(cat /tmp/clang-tidy-result/pr-id.txt)"
35-
echo ::set-output name=pr-head-repo::"$(cat /tmp/clang-tidy-result/pr-head-repo.txt)"
36-
echo ::set-output name=pr-head-ref::"$(cat /tmp/clang-tidy-result/pr-head-ref.txt)"
34+
echo "pr-id=$(cat /tmp/clang-tidy-result/pr-id.txt)" >> $GITHUB_OUTPUT
35+
echo "pr-head-repo=$(cat /tmp/clang-tidy-result/pr-head-repo.txt)" >> $GITHUB_OUTPUT
36+
echo "pr-head-ref=$(cat /tmp/clang-tidy-result/pr-head-ref.txt)" >> $GITHUB_OUTPUT
3737
3838
- name: Check out PR head
3939
if: ${{ steps.check-fixes-yaml-existence.outputs.exists == 'true' }}

.github/workflows/github-release.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
REF_NAME="${{ github.ref_name }}"
2727
fi
2828
29-
echo ::set-output name=ref-name::"$REF_NAME"
30-
echo ::set-output name=tag-name::"${REF_NAME#beta/}"
29+
echo "ref-name=$REF_NAME" >> $GITHUB_OUTPUT
30+
echo "tag-name=${REF_NAME#beta/}" >> $GITHUB_OUTPUT"
3131
3232
- name: Check out repository
3333
uses: actions/checkout@v3
@@ -39,7 +39,7 @@ jobs:
3939
id: set-target-name
4040
run: |
4141
if [[ "${{ steps.set-tag-name.outputs.ref-name }}" =~ "beta/" ]]; then
42-
echo ::set-output name=target-name::"${{ steps.set-tag-name.outputs.ref-name }}"
42+
echo "target-name=${{ steps.set-tag-name.outputs.ref-name }}" >> $GITHUB_OUTPUT
4343
fi
4444
4545
- name: Create a local tag for beta branches
@@ -62,7 +62,7 @@ jobs:
6262
verb=edit
6363
fi
6464
65-
echo ::set-output name=verb::"$verb"
65+
echo "verb=$verb" >> $GITHUB_OUTPUT
6666
env:
6767
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6868

0 commit comments

Comments
 (0)