From 64063e0be3355ae7f1b15f198e584e9c7a401470 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 16:08:43 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 5 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' 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 08fda3241..6fbe6185e 100644 --- a/.github/workflows/branch.yml +++ b/.github/workflows/branch.yml @@ -94,7 +94,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@v5 + uses: actions/upload-artifact@v6 with: name: apk-build path: example/build/app/outputs/apk/release @@ -129,7 +129,7 @@ jobs: working-directory: . - name: Archive Artifact if: ${{ matrix.sdk == '' }} - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v6 with: name: exe-build path: windowsTemp/WindowsApplication.exe @@ -156,7 +156,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@v5 + uses: actions/upload-artifact@v6 if: ${{ matrix.sdk == '' }} with: name: web-build diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 7198f613c..c47689872 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@v5 + uses: actions/upload-artifact@v6 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@v5 + uses: actions/upload-artifact@v6 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@v5 + uses: actions/upload-artifact@v6 with: name: web-build path: example/build/web