We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3304294 commit 5172a3eCopy full SHA for 5172a3e
.github/workflows/autotag-releases.yml
@@ -19,7 +19,7 @@ jobs:
19
- name: Get version from tag
20
id: tag_name
21
run: |
22
- echo ::set-output name=current_version::${GITHUB_REF#refs/tags/}
+ echo "current_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
23
shell: bash
24
- name: Create and push tags
25
CHANGELOG.md
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+## [1.1.1] - 2022-10-13
11
+
12
+### Changed
13
14
+* Switch from set-output to $GITHUB_OUTPUT to avoid warning
15
+ https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
16
17
## [1.1.0] - 2022-08-14
18
### Added
0 commit comments