From 673378f3afa1cfcdba9544015b13a2280ed79b3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 09:38:57 +0000 Subject: [PATCH 1/2] build(deps): bump kuhnroyal/flutter-fvm-config-action from 2 to 3 Bumps [kuhnroyal/flutter-fvm-config-action](https://github.com/kuhnroyal/flutter-fvm-config-action) from 2 to 3. - [Release notes](https://github.com/kuhnroyal/flutter-fvm-config-action/releases) - [Commits](https://github.com/kuhnroyal/flutter-fvm-config-action/compare/v2...v3) --- updated-dependencies: - dependency-name: kuhnroyal/flutter-fvm-config-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/base.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/base.yaml b/.github/workflows/base.yaml index 8662cb6..4a8d3cb 100644 --- a/.github/workflows/base.yaml +++ b/.github/workflows/base.yaml @@ -32,7 +32,7 @@ jobs: java-version: '11' - name: Get Flutter version by FVM - uses: kuhnroyal/flutter-fvm-config-action@v2 + uses: kuhnroyal/flutter-fvm-config-action@v3 id: fvm-config-action with: path: ".fvmrc" From 0ff891da49b264f794b57cebf3d22f4d1a52909c Mon Sep 17 00:00:00 2001 From: Matias de Andrea Date: Thu, 19 Dec 2024 18:42:44 +0100 Subject: [PATCH 2/2] ci: upgrade flutter fvm action --- .github/workflows/base.yaml | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) diff --git a/.github/workflows/base.yaml b/.github/workflows/base.yaml index 4a8d3cb..eb0e9de 100644 --- a/.github/workflows/base.yaml +++ b/.github/workflows/base.yaml @@ -30,21 +30,10 @@ jobs: with: distribution: 'zulu' java-version: '11' - - - name: Get Flutter version by FVM - uses: kuhnroyal/flutter-fvm-config-action@v3 - id: fvm-config-action - with: - path: ".fvmrc" - - - name: Flutter action - uses: subosito/flutter-action@v2 + - name: Setup Flutter + uses: kuhnroyal/flutter-fvm-config-action/setup@v3 with: - flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }} - channel: ${{ steps.fvm-config-action.outputs.FLUTTER_CHANNEL }} - architecture: x64 - cache: true - + path: '.fvmrc' - name: Install dependencies run: flutter pub get - name: Format code