Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/CD-deploy-github-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ jobs:
if: github.event.base_ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
java-version: '17'
distribution: 'temurin'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
java-version: '17'
distribution: 'temurin'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -31,6 +32,6 @@ jobs:
working-directory: Space_Mapper

- name: Upload coverage to codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
file: Space_Mapper/coverage/lcov.info
6 changes: 3 additions & 3 deletions .github/workflows/drive-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
api-level: [21, 23, 29]
target: [default, google_apis]
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.0.0'
flutter-version: '3.24.0'
channel: 'stable' # or: 'dev' or 'beta'
- name: "Run Flutter Driver tests"
# GitHub Action for installing, configuring and running Android Emulators (work only Mac OS)
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/drive-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ jobs:
shutdown_after_job: true
# The branch or tag ref that triggered the workflow will be checked out.
# https://github.com/marketplace/actions/checkout
- uses: actions/checkout@v2
- uses: actions/checkout@v4
# Sets up a flutter environment.
# https://github.com/marketplace/actions/flutter-action
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.0.0'
flutter-version: '3.24.0'
channel: 'stable' # or: 'dev' or 'beta'
- run: "flutter clean"
working-directory: Space_Mapper
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/traffic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: "traffic"

Expand All @@ -24,9 +24,9 @@ jobs:

# Commits files to repository
- name: Commit changes
uses: EndBug/add-and-commit@v4
uses: EndBug/add-and-commit@v9
with:
author_name: Pablo Galve
message: "GitHub traffic (Automated)"
add: "./traffic/*"
ref: "traffic" # commits to branch "traffic"
default_branch: "traffic"
4 changes: 2 additions & 2 deletions Space_Mapper/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version: 3.2.0+5
publish_to: none

environment:
sdk: ">=2.14.0 <=3.3.0"
sdk: ">=3.0.0 <4.0.0"

dependencies:
flutter:
Expand All @@ -31,7 +31,7 @@ dependencies:
sqflite: ^2.0.1
path_provider: ^2.0.5
share: ^2.0.4
uuid: 3.0.5
uuid: ^3.0.5
flutter_form_builder: ^6.1.0+1
latlong2: ^0.8.1
url_launcher: ^6.0.12
Expand Down
Loading