From 5ec62bcb364633c2a752cfed158a42114cea247c Mon Sep 17 00:00:00 2001 From: Ian Stapleton Cordasco Date: Sun, 11 Feb 2024 07:48:06 -0600 Subject: [PATCH] Fix usage of GitHub state/output commands See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0f4cb886..a898b3b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: - name: "Generate hashes" id: hash run: | - cd dist && echo "::set-output name=hashes::$(sha256sum * | base64 -w0)" + cd dist && echo "$(sha256sum * | base64 -w0)" >> $GITHUB_OUTPUT - name: "Upload dists" uses: "actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce"