From adcb997519e8ac43caec5044dfadf43530f93961 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2026 04:38:21 +0000 Subject: [PATCH] chore(deps): bump softprops/action-gh-release from 2 to 3 Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2 to 3. - [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/v2...v3) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/book-build.yml | 4 ++-- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/video-build.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/book-build.yml b/.github/workflows/book-build.yml index 5a1887b..17485fb 100644 --- a/.github/workflows/book-build.yml +++ b/.github/workflows/book-build.yml @@ -252,7 +252,7 @@ jobs: fi - name: Create or update release with PDF - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: files: ./pdf-output/${{ needs.build-pdf.outputs.pdf_name }} tag_name: ${{ steps.tag.outputs.tag }} @@ -287,7 +287,7 @@ jobs: path: ./pdf-output - name: Update dev release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: dev-latest name: "📖 Development Build (Latest)" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21d8b0a..551a2a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,7 +87,7 @@ jobs: run: | tar czf eai-${{ github.ref_name }}-src.tar.gz \ --exclude=.git --exclude=build --exclude=__pycache__ . - - uses: softprops/action-gh-release@v2 + - uses: softprops/action-gh-release@v3 with: files: eai-${{ github.ref_name }}-src.tar.gz generate_release_notes: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 495c452..9899053 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -270,7 +270,7 @@ jobs: $([ "${{ contains(steps.version.outputs.tag, 'rc') || contains(steps.version.outputs.tag, 'beta') }}" = "true" ] && echo "--prerelease") fi - name: Attach all artifacts to release - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: ${{ steps.version.outputs.tag }} name: "eAI ${{ steps.version.outputs.tag }}" diff --git a/.github/workflows/video-build.yml b/.github/workflows/video-build.yml index 8f00108..1e58c06 100644 --- a/.github/workflows/video-build.yml +++ b/.github/workflows/video-build.yml @@ -84,7 +84,7 @@ jobs: - name: Attach to release if: github.event_name == 'release' - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: files: promo/${{ steps.vid.outputs.filename }} tag_name: ${{ github.event.release.tag_name }}