Skip to content

Commit 6d7a9ec

Browse files
committed
Replace deprecated ::set-output
As per the deprecation warning and explanation at https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Signed-off-by: Dominik Gedon <[email protected]>
1 parent 65fce04 commit 6d7a9ec

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/test-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
python-version: ${{ matrix.python-version }}
5858
- name: Get full Python version
5959
id: full-python-version
60-
run: echo ::set-output name=version::$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
60+
run: echo "version={$(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")}" >> $GITHUB_OUTPUT
6161
- name: Bootstrap poetry
6262
run: |
6363
curl -sL https://install.python-poetry.org | python - -y ${{ matrix.bootstrap-args }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
9+
### Changed
10+
- [CI] Replace deprecated `::set-output`
911

1012
## [18.0.1] - 2024-10-28
1113
### Fixed

0 commit comments

Comments
 (0)