From 13144020a462ececd982372e3ea7d63378b1491b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 17:54:43 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 6 to 7 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] --- .github/workflows/branch.yml | 6 +++--- .github/workflows/master.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index ed60402ee..a96066a94 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -95,7 +95,7 @@ jobs: run: flutter build apk --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}" - name: Archive Artifact if: ${{ matrix.sdk == '' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: apk-build path: example/build/app/outputs/apk/release @@ -130,7 +130,7 @@ jobs: working-directory: . - name: Archive Artifact if: ${{ matrix.sdk == '' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: exe-build path: windowsTemp/WindowsApplication.exe @@ -157,7 +157,7 @@ jobs: - name: Build Web Application run: flutter build web --wasm --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}" - name: Archive Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 if: ${{ matrix.sdk == '' }} with: name: web-build diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index c47689872..a230cb4c5 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -53,7 +53,7 @@ jobs: - name: Build Android Application run: flutter build apk --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}" - name: Archive Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: apk-build path: example/build/app/outputs/apk/release @@ -82,7 +82,7 @@ jobs: run: iscc "windowsApplicationInstallerSetup.iss" working-directory: . - name: Archive Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: exe-build path: windowsTemp/WindowsApplication.exe @@ -107,7 +107,7 @@ jobs: - name: Build Web Application run: flutter build web --wasm --dart-define=COMMIT_SHA=${{ github.sha }} --dart-define=flutter.flutter_map.unblockOSM="${{ secrets.UNBLOCK_OSM }}" - name: Archive Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: web-build path: example/build/web