From 5a606242c143a3570d1e703f37d4d248006874dd Mon Sep 17 00:00:00 2001 From: James Leahy Date: Sat, 22 Jun 2024 11:41:34 +0200 Subject: [PATCH] chore: upgrade fvm v3 (#30) --- .fvm/fvm_config.json | 4 ---- .fvmrc | 4 ++++ .github/actions/set_up_flutter/action.yml | 2 +- .gitignore | 6 +++--- .vscode/settings.json | 3 +++ 5 files changed, 11 insertions(+), 8 deletions(-) delete mode 100644 .fvm/fvm_config.json create mode 100644 .fvmrc create mode 100644 .vscode/settings.json diff --git a/.fvm/fvm_config.json b/.fvm/fvm_config.json deleted file mode 100644 index 7d9198e..0000000 --- a/.fvm/fvm_config.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "flutterSdkVersion": "3.13.0", - "flavors": {} -} \ No newline at end of file diff --git a/.fvmrc b/.fvmrc new file mode 100644 index 0000000..b53d1f9 --- /dev/null +++ b/.fvmrc @@ -0,0 +1,4 @@ +{ + "flutter": "3.13.0", + "flavors": {} +} \ No newline at end of file diff --git a/.github/actions/set_up_flutter/action.yml b/.github/actions/set_up_flutter/action.yml index 278f916..2e7b9be 100644 --- a/.github/actions/set_up_flutter/action.yml +++ b/.github/actions/set_up_flutter/action.yml @@ -5,7 +5,7 @@ runs: using: composite steps: - - uses: kuhnroyal/flutter-fvm-config-action@v1 + - uses: kuhnroyal/flutter-fvm-config-action@v2 id: fvm-config-action - uses: subosito/flutter-action@v2 with: diff --git a/.gitignore b/.gitignore index 157efe4..905da8c 100644 --- a/.gitignore +++ b/.gitignore @@ -43,8 +43,8 @@ app.*.map.json # Exceptions to above rules. !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages -# FVM -.fvm/flutter_sdk - # l10n assets_dev/l10n/ + +# FVM Version Cache +.fvm/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..5967f4a --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dart.flutterSdkPath": ".fvm/versions/3.13.0" +} \ No newline at end of file