diff --git a/.github/workflows/build-version.yml b/.github/workflows/build-version.yml index ac630a281..81ba89972 100644 --- a/.github/workflows/build-version.yml +++ b/.github/workflows/build-version.yml @@ -31,16 +31,12 @@ jobs: useConfigFile: true configFilePath: gitversion.yml - - uses: actions/github-script@v6 + - uses: actions/github-script@v7 with: script: | github.rest.issues.createComment({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, - body: "Does this post? - ${{ steps.gitversion.outputs.majorMinorPatch }} - ${{ steps.gitversion.outputs.commitsSinceVersionSourcePadded }} - ${{ steps.gitversion.outputs.preReleaseNumber }} - " + body: "Next version is ยป ${{ steps.gitversion.outputs.majorMinorPatch }}.${{ steps.gitversion.outputs.preReleaseNumber }}" })