From 3a23b26c9c08c15e021882221a9ddc4fdd15b61e Mon Sep 17 00:00:00 2001 From: behnazh Date: Fri, 28 Oct 2022 08:59:34 +1000 Subject: [PATCH] fix(ci): use GITHUB_OUTPUT instead of deprecated set-output --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1f781c7e..a310c261 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -113,7 +113,7 @@ jobs: BUILD_EPOCH_PATH=$(find dist/ -type f -name "*-build-epoch.txt") DIGEST=$(sha256sum $TARBALL_PATH $WHEEL_PATH $REQUIREMENTS_PATH $SBOM_PATH $HTML_DOCS_PATH $BUILD_EPOCH_PATH | base64 -w0) echo "Digest of artifacts is $DIGEST." - echo "::set-output name=artifacts-sha256::$DIGEST" + echo "artifacts-sha256=$DIGEST" >> "$GITHUB_OUTPUT" # For now only generate artifacts for the specified OS and Python version in env variables. # Currently reusable workflows do not support setting strategy property from the caller workflow.