From 87c22ea7274cc52afdc66114a46fe9e46b999717 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Sat, 14 Sep 2024 11:13:24 -0600 Subject: [PATCH] Use modern syntax to get Actions output into GUI Co-authored-by: Chuck Daniels --- .github/actions/install-pkg/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/install-pkg/action.yml b/.github/actions/install-pkg/action.yml index 0b292180..af1ebfe7 100644 --- a/.github/actions/install-pkg/action.yml +++ b/.github/actions/install-pkg/action.yml @@ -16,7 +16,7 @@ runs: - name: Display full python version shell: bash id: full-python-version - run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") + run: echo "{version}=$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")" >> $GITHUB_OUTPUT - name: Install package and test dependencies shell: bash