Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/automatic_generation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
- name: need_to_release_print
run: "echo ${{ needs.generate_package.outputs.need_to_release }}"
- id: next_version
uses: zwaldowski/semver-release-action@v4
uses: zwaldowski/semver-release-action@v6
with:
dry_run: true
bump: patch
Expand All @@ -106,7 +106,7 @@ jobs:
git commit -m "Bump version"
git push
echo "::set-output name=sha::$(git rev-parse HEAD)"
- uses: zwaldowski/semver-release-action@v4
- uses: zwaldowski/semver-release-action@v6
with:
github_token: ${{ secrets.REPO_SCOPED_TOKEN }}
sha: ${{ steps.git_commit.outputs.sha }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/make_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
id: current-ha-version
run: echo "::set-output name=current-ha-version::$(cat ha_version)"
- id: next_version
uses: zwaldowski/semver-release-action@v4
uses: zwaldowski/semver-release-action@v6
with:
dry_run: true
bump: ${{ github.event.inputs.type }}
Expand All @@ -31,7 +31,7 @@ jobs:
git commit -m "Bump version"
git push
echo "::set-output name=sha::$(git rev-parse HEAD)"
- uses: zwaldowski/semver-release-action@v4
- uses: zwaldowski/semver-release-action@v6
with:
github_token: ${{ secrets.REPO_SCOPED_TOKEN }}
sha: ${{ steps.git_commit.outputs.sha }}
Expand Down