Skip to content

Commit 33d8fbb

Browse files
Replace set-output command
1 parent 237ab9e commit 33d8fbb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pre_release_version_bump.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
old_version=`grep -oP '(?<=__version__ = ").*(?=")' xanadu_sphinx_theme/_version.py`
1717
new_version=${old_version%-dev}
1818
19-
echo "::set-output name=old_version::$old_version"
20-
echo "::set-output name=new_version::$new_version"
19+
echo "old_version=$old_version" >> $GITHUB_OUTPUT
20+
echo "new_version=$new_version" >> $GITHUB_OUTPUT
2121
2222
- name: Bump version in _version.py
2323
run:
@@ -38,4 +38,4 @@ jobs:
3838
to `${{ steps.versions.outputs.new_version }}`.
3939
commit-message: Bump version to `${{ steps.versions.outputs.new_version }}`
4040
branch: pre-release-version-bump
41-
reviewers: mandrenkov, josh146
41+
reviewers: mandrenkov, josh146

0 commit comments

Comments
 (0)