From d844fda850d830ff5d99173d851cddf7e988fd4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 05:13:15 +0000 Subject: [PATCH] Bump ncipollo/release-action from 1.14.0 to 1.15.0 Bumps [ncipollo/release-action](https://github.com/ncipollo/release-action) from 1.14.0 to 1.15.0. - [Release notes](https://github.com/ncipollo/release-action/releases) - [Commits](https://github.com/ncipollo/release-action/compare/v1.14.0...v1.15.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 5f87aaf..deb78b5 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.14.0 + uses: ncipollo/release-action@v1.15.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.14.0 + uses: ncipollo/release-action@v1.15.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.14.0 + uses: ncipollo/release-action@v1.15.0 with: artifacts: qModManager-win64-${{ steps.release_type.outputs.VERSION }}.7z token: ${{ secrets.GITHUB_TOKEN }}