ci: Use GITHUB_OUTPUT envvar instead of set-output command (#553)

* ci: Use GITHUB_OUTPUT envvar instead of set-output command

* Quote envvar to match documentation
This commit is contained in:
Arun Sathiya 2024-03-23 17:56:48 -07:00 committed by GitHub
parent e98c47861d
commit 126b256b4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,7 +28,7 @@ jobs:
- name: Get full Python version
id: full-python-version
shell: bash
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 poetry
shell: bash