From 436fc80d02d61cabaf26694b25283fd346420d29 Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Tue, 7 Jan 2025 13:43:02 -0800 Subject: [PATCH] Stop using deprecated set-output syntax --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3e9796e..3143f6b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -19,11 +19,11 @@ jobs: - name: Get Valheim version id id: valheimversion - run: echo "::set-output name=valheimversion::$(curl -s https://api.steamcmd.net/v1/info/896660 | jq -r '.data.\"896660\".depots.branches.public.buildid')" + run: echo "valheimversion=$(curl -s https://api.steamcmd.net/v1/info/896660 | jq -r '.data.\"896660\".depots.branches.public.buildid')" >> $GITHUB_OUTPUT - name: Get BepInEx version id: bepinexversion - run: echo "::set-output name=bepinexversion::$(./scripts/get-dep-version.sh denikson-BepInExPack_Valheim)" + run: echo "bepinexversion=$(./scripts/get-dep-version.sh denikson-BepInExPack_Valheim)" >> $GITHUB_OUTPUT - name: Create NuGet config path run: mkdir -p ~/.config/NuGet/