From fb0152369241c00f7946478a57538a48df39af6d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 05:52:51 +0000 Subject: [PATCH] Bump ncipollo/release-action from 1.15.0 to 1.16.0 Bumps [ncipollo/release-action](https://github.com/ncipollo/release-action) from 1.15.0 to 1.16.0. - [Release notes](https://github.com/ncipollo/release-action/releases) - [Commits](https://github.com/ncipollo/release-action/compare/v1.15.0...v1.16.0) --- updated-dependencies: - dependency-name: ncipollo/release-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b589c5f..8ee1a88 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,7 +51,7 @@ jobs: 7z a ../../qModManager-win64-${GITHUB_REF##*/}.7z . ../../resources/README.txt - name: Release (debug) if: ${{ steps.release_type.outputs.RELEASE_TYPE == 'debug' }} - uses: ncipollo/release-action@v1.15.0 + uses: ncipollo/release-action@v1.16.0 with: artifacts: qModManager-win64-${{ steps.release_type.outputs.VERSION }}.7z prerelease: True @@ -61,14 +61,14 @@ jobs: This is a debug build to help development. - name: Release (beta|debug) if: ${{ steps.release_type.outputs.RELEASE_TYPE == 'beta' }} - uses: ncipollo/release-action@v1.15.0 + uses: ncipollo/release-action@v1.16.0 with: artifacts: qModManager-win64-${{ steps.release_type.outputs.VERSION }}.7z prerelease: True token: ${{ secrets.GITHUB_TOKEN}} - name: Release (stable) if: ${{ steps.release_type.outputs.RELEASE_TYPE == 'release' }} - uses: ncipollo/release-action@v1.15.0 + uses: ncipollo/release-action@v1.16.0 with: artifacts: qModManager-win64-${{ steps.release_type.outputs.VERSION }}.7z token: ${{ secrets.GITHUB_TOKEN }}