From 9c67a68217ee7e571f33bb1ce32bd55a356b2c86 Mon Sep 17 00:00:00 2001 From: dartcafe Date: Thu, 12 Sep 2024 23:15:55 +0200 Subject: [PATCH] Update actions Signed-off-by: dartcafe --- .github/actions/get-polls-version/action.yml | 2 +- .github/workflows/publish_alpha.yml | 4 ++-- .github/workflows/publish_beta.yml | 4 ++-- .github/workflows/publish_release.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/actions/get-polls-version/action.yml b/.github/actions/get-polls-version/action.yml index 4811ff060..9f8d05f40 100644 --- a/.github/actions/get-polls-version/action.yml +++ b/.github/actions/get-polls-version/action.yml @@ -21,7 +21,7 @@ runs: steps: - name: Get app version from appinfo/info.xml id: appinfo - uses: mavrosxristoforos/get-xml-info@1.1.1 + uses: mavrosxristoforos/get-xml-info@2 with: xml-file: 'appinfo/info.xml' xpath: '//info//version' diff --git a/.github/workflows/publish_alpha.yml b/.github/workflows/publish_alpha.yml index 5cb88c600..0651c86b1 100644 --- a/.github/workflows/publish_alpha.yml +++ b/.github/workflows/publish_alpha.yml @@ -49,11 +49,11 @@ jobs: - name: Extract release notes if: success() id: extract-release-notes - uses: ffurrer2/extract-release-notes@v1 + uses: ffurrer2/extract-release-notes@v2 - name: Publish pre-release ${{ steps.appinfo.outputs.app-version }} if: success() - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: body: "# Changelog for the upcomming release (preview)\n ${{ steps.extract-release-notes.outputs.release_notes }} " prerelease: true diff --git a/.github/workflows/publish_beta.yml b/.github/workflows/publish_beta.yml index 2abceb226..1db16b584 100644 --- a/.github/workflows/publish_beta.yml +++ b/.github/workflows/publish_beta.yml @@ -51,11 +51,11 @@ jobs: - name: Extract release notes if: success() id: extract-release-notes - uses: ffurrer2/extract-release-notes@v1 + uses: ffurrer2/extract-release-notes@v2 - name: Publish pre-release ${{ steps.appinfo.outputs.app-version }} if: success() - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: body: "# Changelog for the upcomming release (preview)\n ${{ steps.extract-release-notes.outputs.release_notes }} " prerelease: true diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 53987dd41..06ae12b37 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -50,11 +50,11 @@ jobs: - name: Extract release notes if: success() id: extract-release-notes - uses: ffurrer2/extract-release-notes@v1 + uses: ffurrer2/extract-release-notes@v2 - name: Draft Release if: success() - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: body: "# Changelog ${{ steps.appinfo.outputs.app-version }} \n ${{ steps.extract-release-notes.outputs.release_notes }} " prerelease: false