diff --git a/.github/workflows/autotag-releases.yml b/.github/workflows/autotag-releases.yml index a0b5f30..44fbd19 100644 --- a/.github/workflows/autotag-releases.yml +++ b/.github/workflows/autotag-releases.yml @@ -19,7 +19,7 @@ jobs: - name: Get version from tag id: tag_name run: | - echo ::set-output name=current_version::${GITHUB_REF#refs/tags/} + echo "current_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT shell: bash - name: Create and push tags run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b459fc..750637d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.3] - 2022-10-13 + +### Changed + +* Switch from set-output to $GITHUB_OUTPUT to avoid warning + https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ + ## [1.3.2] - 2022-09-15 ### Fixed