Skip to content

Commit 20b915e

Browse files
authored
Fix some deprecation warnings (#164)
1 parent 759c839 commit 20b915e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/sdk.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
else
2929
submodule="modules/sentry-native"
3030
fi
31-
echo "::set-output name=submodule::$submodule"
32-
echo "::set-output name=path::plugin-dev/Source/ThirdParty/${{ inputs.target }}"
33-
echo "::set-output name=buildScript::scripts/build-$(echo '${{ inputs.target }}' | tr '[:upper:]' '[:lower:]').sh"
31+
echo "submodule=$submodule" >> $GITHUB_OUTPUT
32+
echo "path=plugin-dev/Source/ThirdParty/${{ inputs.target }}" >> $GITHUB_OUTPUT
33+
echo "buildScript=scripts/build-$(echo '${{ inputs.target }}' | tr '[:upper:]' '[:lower:]').sh" >> $GITHUB_OUTPUT
3434
3535
- name: Get submodule status
3636
run: git submodule status --cached ${{ steps.env.outputs.submodule }} | tee submodule-status

0 commit comments

Comments
 (0)