From 7c2b56b1e978a23c55bb1d587a6633a7de81185c Mon Sep 17 00:00:00 2001 From: pg9182 <96569817+pg9182@users.noreply.github.com> Date: Fri, 21 Apr 2023 20:34:48 -0400 Subject: Replace `set-output` in GitHub Actions workflows (#452) `set-output` is being deprecated as per https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7ba9e412..1ac19129 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: - name: Extract Short Commit Hash id: extract shell: bash - run: echo ::set-output name=commit::`git rev-parse --short HEAD` + run: echo commit=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT - name: Upload Build Artifact uses: actions/upload-artifact@v3 with: -- cgit v1.2.3