diff --git a/.github/workflows/geocoding.yaml b/.github/workflows/geocoding.yaml index 2d78c13..da84c4e 100644 --- a/.github/workflows/geocoding.yaml +++ b/.github/workflows/geocoding.yaml @@ -32,7 +32,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@v3 + - uses: actions/checkout@v4 # Make sure the stable version of Flutter is available - uses: subosito/flutter-action@v2 @@ -40,7 +40,7 @@ jobs: channel: 'stable' # Make sure JAVA version 17 is installed on build agent. - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'temurin' # See 'Supported distributions' for available options java-version: '17' diff --git a/.github/workflows/geocoding_android.yaml b/.github/workflows/geocoding_android.yaml index e375174..0dfa6f5 100644 --- a/.github/workflows/geocoding_android.yaml +++ b/.github/workflows/geocoding_android.yaml @@ -31,7 +31,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@v3 + - uses: actions/checkout@v4 # Make sure the stable version of Flutter is available - uses: subosito/flutter-action@v2 @@ -39,7 +39,7 @@ jobs: channel: 'stable' # Make sure JAVA version 17 is installed on build agent. - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'temurin' # See 'Supported distributions' for available options java-version: '17' diff --git a/.github/workflows/geocoding_ios.yaml b/.github/workflows/geocoding_ios.yaml index 3237e4d..4eef06d 100644 --- a/.github/workflows/geocoding_ios.yaml +++ b/.github/workflows/geocoding_ios.yaml @@ -32,7 +32,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@v3 + - uses: actions/checkout@v4 # Make sure the stable version of Flutter is available - uses: subosito/flutter-action@v2 diff --git a/.github/workflows/geocoding_platform_interface.yaml b/.github/workflows/geocoding_platform_interface.yaml index 1b3a700..a0b0a9b 100644 --- a/.github/workflows/geocoding_platform_interface.yaml +++ b/.github/workflows/geocoding_platform_interface.yaml @@ -31,7 +31,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@v3 + - uses: actions/checkout@v4 # Make sure the stable version of Flutter is available - uses: subosito/flutter-action@v2 diff --git a/.github/workflows/no-response.yaml b/.github/workflows/no-response.yaml index 6761fbb..3ce65a6 100644 --- a/.github/workflows/no-response.yaml +++ b/.github/workflows/no-response.yaml @@ -39,7 +39,7 @@ jobs: # the `status: needs more info` label, the issue should be closed automatically. # 5. Set the `close-issue-message` parameter with a text that will be placed as a comment to the respective issue that # is closed to explain why the issue was closed. - - uses: actions/stale@v8 + - uses: actions/stale@v9 with: stale-issue-label: 'status: needs more info' days-before-stale: -1 diff --git a/geocoding/pubspec.yaml b/geocoding/pubspec.yaml index 83846d0..ce02e39 100644 --- a/geocoding/pubspec.yaml +++ b/geocoding/pubspec.yaml @@ -20,7 +20,7 @@ dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 mockito: ^5.0.0 plugin_platform_interface: ^2.0.0 diff --git a/geocoding_android/pubspec.yaml b/geocoding_android/pubspec.yaml index 98b7c67..6ff1f2b 100644 --- a/geocoding_android/pubspec.yaml +++ b/geocoding_android/pubspec.yaml @@ -18,7 +18,7 @@ dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 mockito: ^5.0.0 plugin_platform_interface: ^2.0.0 diff --git a/geocoding_ios/example/pubspec.yaml b/geocoding_ios/example/pubspec.yaml index fff77a5..2b38431 100644 --- a/geocoding_ios/example/pubspec.yaml +++ b/geocoding_ios/example/pubspec.yaml @@ -19,7 +19,7 @@ dependencies: # The example app is bundled with the plugin so we use a path dependency on # the parent directory to use the current plugin's version. path: ../ - geocoding_platform_interface: ^2.0.0 + geocoding_platform_interface: ^3.1.0 # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class for iOS style icons. diff --git a/geocoding_ios/pubspec.yaml b/geocoding_ios/pubspec.yaml index 47df649..9098c28 100644 --- a/geocoding_ios/pubspec.yaml +++ b/geocoding_ios/pubspec.yaml @@ -12,13 +12,13 @@ dependencies: flutter: sdk: flutter - geocoding_platform_interface: ^2.0.0 + geocoding_platform_interface: ^3.1.0 dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 mockito: ^5.0.0 plugin_platform_interface: ^2.0.0 diff --git a/geocoding_ios/test/geocoding_test.dart b/geocoding_ios/test/geocoding_test.dart index cf48ae8..b87799a 100644 --- a/geocoding_ios/test/geocoding_test.dart +++ b/geocoding_ios/test/geocoding_test.dart @@ -9,7 +9,7 @@ final mockLocation = Location( timestamp: DateTime.fromMillisecondsSinceEpoch(0).toUtc(), ); -final mockPlacemark = Placemark( +const mockPlacemark = Placemark( administrativeArea: 'Overijssel', country: 'Netherlands', isoCountryCode: 'NL', diff --git a/geocoding_platform_interface/pubspec.yaml b/geocoding_platform_interface/pubspec.yaml index e2da3c5..d651b78 100644 --- a/geocoding_platform_interface/pubspec.yaml +++ b/geocoding_platform_interface/pubspec.yaml @@ -16,7 +16,7 @@ dev_dependencies: flutter_test: sdk: flutter - flutter_lints: ^2.0.1 + flutter_lints: ^3.0.1 mockito: ^5.0.0 environment: