diff --git a/.github/workflows/build-installers.yaml b/.github/workflows/build-installers.yaml index adf8eb0..9311846 100644 --- a/.github/workflows/build-installers.yaml +++ b/.github/workflows/build-installers.yaml @@ -291,7 +291,7 @@ jobs: echo "IS_PRERELEASE=${IS_PRERELEASE}" >> "$GITHUB_OUTPUT" - name: Release executable - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3.0.1 with: prerelease: ${{steps.is_latest.outputs.IS_PRERELEASE}} make_latest: "${{steps.is_latest.outputs.IS_LATEST}}" @@ -299,7 +299,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') - name: Release debs - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3.0.1 with: prerelease: ${{steps.is_latest.outputs.IS_PRERELEASE}} make_latest: "${{steps.is_latest.outputs.IS_LATEST}}" diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index f16c62b..08855e2 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -36,7 +36,7 @@ jobs: cz changelog $GITHUB_REF_NAME --file-name=INCREMENTAL.md - name: Create release with the Changelog as release notes - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3.0.1 with: body_path: INCREMENTAL.md token: ${{ secrets.REPO_COMMIT }}