From 1b69c0fdb07c6a42ce1a8bda23f74055cda12768 Mon Sep 17 00:00:00 2001 From: phelioz Date: Sat, 3 Dec 2022 19:13:41 +0100 Subject: [PATCH] Replace deprecated set-output (#51) The command set-output is now deprecated: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/main.yml | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b8e9907..0686aa5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: env: STEAM_USERNAME: ${{ secrets.STEAM_USERNAME }} if: env.STEAM_USERNAME != '' - run: echo "::set-output name=usernameExists::true" + run: echo "usernameExists=true" >> $GITHUB_OUTPUT testDeploy: name: Deploy to Steam ☁ diff --git a/action.yml b/action.yml index 54ac602..8fe4833 100644 --- a/action.yml +++ b/action.yml @@ -101,5 +101,5 @@ runs: run: | chmod +x $GITHUB_ACTION_PATH/steam_deploy.sh $GITHUB_ACTION_PATH/steam_deploy.sh - echo "::set-output name=manifest::$(pwd)/manifest.vdf" + echo "manifest=$(pwd)/manifest.vdf" >> $GITHUB_OUTPUT shell: bash