Skip to content

Commit

Permalink
Merge pull request #370 from arunsathiya/main
Browse files Browse the repository at this point in the history
ci: Use GITHUB_OUTPUT envvar instead of set-output command
  • Loading branch information
haberman authored Mar 28, 2024
2 parents 22a83c0 + dec6aba commit 34f4a66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Get LLVM Revision
id: llvm-revision
run: |
echo "::set-output name=revision::$(git -C ${{ github.workspace }}/llvm-project rev-parse HEAD)"
echo "revision=$(git -C ${{ github.workspace }}/llvm-project rev-parse HEAD)" >> "$GITHUB_OUTPUT"
- uses: actions/cache@v2
id: llvm-build
with:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- name: Get LLVM Revision
id: llvm-revision
run: |
echo "::set-output name=revision::$(git -C ${{ github.workspace }}/llvm-project rev-parse HEAD)"
echo "revision=$(git -C ${{ github.workspace }}/llvm-project rev-parse HEAD)" >> "$GITHUB_OUTPUT"
- uses: actions/cache@v2
id: llvm-build
with:
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Get LLVM Revision
id: llvm-revision
run: |
echo "::set-output name=revision::$(git -C ${{ github.workspace }}/llvm-project rev-parse HEAD)"
echo "revision=$(git -C ${{ github.workspace }}/llvm-project rev-parse HEAD)" >> "$GITHUB_OUTPUT"
- uses: actions/cache@v2
id: llvm-build
with:
Expand Down

0 comments on commit 34f4a66

Please sign in to comment.