From 482daf6690820fb12c1b84e248fdf628a8717fb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 05:01:04 +0000 Subject: [PATCH] Bump ncipollo/release-action from 1.18.0 to 1.20.0 Bumps [ncipollo/release-action](https://github.com/ncipollo/release-action) from 1.18.0 to 1.20.0. - [Release notes](https://github.com/ncipollo/release-action/releases) - [Commits](https://github.com/ncipollo/release-action/compare/v1.18.0...v1.20.0) --- updated-dependencies: - dependency-name: ncipollo/release-action dependency-version: 1.20.0 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 e758edb..4807bfd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -53,7 +53,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.18.0 + uses: ncipollo/release-action@v1.20.0 with: artifacts: qModManager-win64-${{ steps.release_type.outputs.VERSION }}.7z prerelease: True @@ -63,14 +63,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.18.0 + uses: ncipollo/release-action@v1.20.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.18.0 + uses: ncipollo/release-action@v1.20.0 with: artifacts: qModManager-win64-${{ steps.release_type.outputs.VERSION }}.7z token: ${{ secrets.GITHUB_TOKEN }}