From 7b3563fb628ef4e5addab9bf130a3b70284744e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Mar 2026 20:07:59 +0000 Subject: [PATCH] build(deps): bump actions/upload-artifact from 6 to 7 (PR #2816) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-artifacts.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-artifacts.yml b/.github/workflows/build-artifacts.yml index 66a0b21c2..c26ecb6e2 100644 --- a/.github/workflows/build-artifacts.yml +++ b/.github/workflows/build-artifacts.yml @@ -33,7 +33,7 @@ jobs: JADX_BUILD_JAVA_VERSION: 11 - name: Save bundle artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ format('jadx-{0}', env.JADX_VERSION) }} # Waiting fix for https://github.com/actions/upload-artifact/issues/39 to upload zip file @@ -43,7 +43,7 @@ jobs: retention-days: 14 - name: Save Windows bundle artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ format('jadx-gui-{0}-no-jre-win', env.JADX_VERSION) }} # Upload unpacked files for now @@ -81,7 +81,7 @@ jobs: run: ./gradlew dist -PbundleJRE=true - name: Save Windows with JRE bundle artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ format('jadx-gui-{0}-with-jre-win', env.JADX_VERSION) }} # Upload unpacked files for now diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de83c365a..8eca25d3b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: run: ./gradlew dist -PbundleJRE=true - name: Save JRE bundle artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: ${{ format('jadx-gui-{0}-with-jre-win', env.JADX_VERSION) }} path: ${{ format('build/distWinWithJre/jadx-gui-{0}-with-jre-win.zip', env.JADX_VERSION) }}