From 9e8cb03f5b8e626f30e05eafe511f9265fd8f3aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Feb 2026 05:32:57 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact in the actions group Bumps the actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `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 dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/android.yml | 4 ++-- .github/workflows/linux.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 8df1016..11a51dc 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -71,12 +71,12 @@ jobs: mv build/app/outputs/bundle/release/app-release.aab output/$aabName - name: Upload APK artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: TimingFlutter-Android-Apk path: output/${{ steps.rename.outputs.apkName }} - name: Upload AAB artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: TimingFlutter-Android-Aab path: output/${{ steps.rename.outputs.aabName }} diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index ddc9756..eb84424 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -97,7 +97,7 @@ jobs: tar -C AppDir -czvf $archiveName . - name: Upload artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: TimingTrainer-Archive-${{ matrix.arch.archive-suffix }} path: ${{ steps.compress.outputs.archiveName }}