From bb6cbcefc6942c8160b34af824dc059593bb3b28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 05:58:35 +0000 Subject: [PATCH] Bump softprops/action-gh-release from 1 to 2 Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 1 to 2. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v1...v2) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/buildarm64.yml | 2 +- .github/workflows/update.yml | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9dcbce1..1311de5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -199,7 +199,7 @@ jobs: RCLONE_CONFIG_PASS: ${{ secrets.RCLONE_CONFIG_PASS }} - name: Upload Windows 11 x64 build to release 🤌 - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: ${{ needs.build.outputs.zipname }}.7z fail_on_unmatched_files: true @@ -249,7 +249,7 @@ jobs: RCLONE_CONFIG_PASS: ${{ secrets.RCLONE_CONFIG_PASS }} - name: Upload Windows 10 x64 build to release 🤌 - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: ${{ needs.build.outputs.zipname }}_Windows_10.7z fail_on_unmatched_files: true diff --git a/.github/workflows/buildarm64.yml b/.github/workflows/buildarm64.yml index 0c92bab..0a052eb 100644 --- a/.github/workflows/buildarm64.yml +++ b/.github/workflows/buildarm64.yml @@ -189,7 +189,7 @@ jobs: RCLONE_CONFIG_PASS: ${{ secrets.RCLONE_CONFIG_PASS }} - name: Upload Windows 11 arm64 build to release 🤌 - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: ${{ needs.build.outputs.zipname }}.7z fail_on_unmatched_files: true diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 5710e95..c8e33a0 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -404,7 +404,7 @@ jobs: KERNEL_SU_MSG: ${{ needs.check.outputs.KERNEL_SU_MSG }} - name: Create Tag and Release for Windows 11 arm64 release ✍🏼 - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: tag_name: ${{ env.WIN11ARM64_TAG }} token: ${{ secrets.GITHUB_TOKEN }} @@ -414,7 +414,7 @@ jobs: GITHUB_WORKSPACE: ${{ github.workspace }} - name: Create Tag and Release for Windows 10 x64 release ✍🏼 - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: tag_name: ${{ env.WIN10X64_TAG }} token: ${{ secrets.GITHUB_TOKEN }} @@ -424,7 +424,7 @@ jobs: GITHUB_WORKSPACE: ${{ github.workspace }} - name: Create Tag and Release for Windows 11 x64 release ✍🏼 - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: tag_name: ${{ env.WIN11X64_TAG }} token: ${{ secrets.GITHUB_TOKEN }}