diff --git a/.github/workflows/branch.yml b/.github/workflows/branch.yml index 3ecb8660f..64c4f5a46 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 if: ${{ matrix.sdk == '' }} with: name: web-build diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 860e46805..279aec272 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 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@v4 + uses: actions/upload-artifact@v5 with: name: web-build path: example/build/web