From bbb8d0fa5da0abe7679544769f43758f50a309f5 Mon Sep 17 00:00:00 2001 From: John <153130034+KarloffsGhost@users.noreply.github.com> Date: Wed, 29 Jul 2026 23:15:03 -0700 Subject: [PATCH] Modernize deprecated ::set-output to \ --- .github/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bb359ab7cf..e322cd937b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -72,9 +72,9 @@ jobs: id: get-destination-dir run: | if [[ ${{ env.RELEASE_BUILD }} == true ]]; then - echo "::set-output name=dst_dir::stable" + echo "dst_dir=stable" >> "$GITHUB_OUTPUT" else - echo "::set-output name=dst_dir::latest" + echo "dst_dir=latest" >> "$GITHUB_OUTPUT" fi - name: Checkout latest Docs continue-on-error: true