From 1f87065d9b00dc3872e87c93fb778ea02a3abf69 Mon Sep 17 00:00:00 2001 From: Nick Porter Date: Mon, 31 Oct 2022 16:39:46 +0000 Subject: [PATCH] CI: Remove deprecated set-ouput --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4281091648..3d276f80d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -203,7 +203,7 @@ jobs: id: opensslshasum if: ${{ matrix.env.LIBS_ALT == 'yes' }} run: | - wget -qO- http://www.openssl.org/source/openssl-$ALT_OPENSSL.tar.gz.sha256 | sed -ne 's/^\s\+/::set-output name=shasum::/p' + wget -qO- http://www.openssl.org/source/openssl-$ALT_OPENSSL.tar.gz.sha256 | sed -ne 's/^\s\+/shasum=/p' >> $GITHUB_OUTPUT - name: 'Restore OpenSSL 3.0 from the cache' if: ${{ matrix.env.LIBS_ALT == 'yes' }} @@ -420,7 +420,7 @@ jobs: - name: "Report whether PERSONAL_ACCESS_TOKEN secret exists" id: merge-preflight run: | - [ -z "$PERSONAL_ACCESS_TOKEN" ] || echo "::set-output name=PERSONAL_ACCESS_TOKEN_EXISTS::1" + [ -z "$PERSONAL_ACCESS_TOKEN" ] || echo "PERSONAL_ACCESS_TOKEN_EXISTS=1" >> $GITHUB_OUTPUT env: PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }} outputs: -- 2.47.3