From f75eb12c19b25cbc77c5c90d0804ba7eced3a117 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Wed, 20 Sep 2023 09:02:50 -0400 Subject: [PATCH] Fix GitHub Action deprecated notices. This fixes several deprecated notices caused by the use of `set-output` and `save-output` in GitHub Action workflows. These were deprecated, and could be removed at any time without notice. GitHub posted an update on July 24th that they still plan on removing these commands but were delaying the removal because of continued high usage. More can be found about this in the announcement posts: - https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ - https://github.blog/changelog/2023-07-24-github-actions-update-on-save-state-and-set-output-commands/ --- .github/workflows/satis-update.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/satis-update.yml b/.github/workflows/satis-update.yml index eb3671513..55d4e58a0 100644 --- a/.github/workflows/satis-update.yml +++ b/.github/workflows/satis-update.yml @@ -15,11 +15,11 @@ jobs: id: package env: REPO: ${{ github.repository }} - run: echo ::set-output name=PACKAGE::${REPO##*/} + run: echo "PACKAGE=${REPO##*/}" >> $GITHUB_OUTPUT - name: Set Version id: tag - run: echo ::set-output name=VERSION::${GITHUB_REF##*/} + run: echo "VERSION=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT - name: Repository Dispatch uses: peter-evans/repository-dispatch@v1