subosito / flutter-action

Flutter environment for use in GitHub Actions. It works on Linux, Windows, and macOS.
MIT License
2.16k stars 193 forks source link

can not use the specific version #230

Closed Copperfiled closed 8 months ago

Copperfiled commented 1 year ago

I got 3.10.2 which is the lastest version, not the specific version.

pjung-bosch commented 1 year ago

I have the same problem; after this step

- name: Setup Flutter
        uses: subosito/flutter-action@v2
        with:
          flutter-version: '3.3.2'
          channel: 'stable'
          cache: false

I get

Flutter 3.10.2 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 9cd3d0d9ff (9 days ago) • 2023-05-23 20:57:28 -0700
Engine • revision 90fa3ae28f
Tools • Dart 3.0.2 • DevTools 2.23.1

It used to work fine until recently.

vakaszia commented 1 year ago

Yes I'm having the same issue. It's not working with specific version.

dokkaebi commented 10 months ago

I ran into a similar issue when I updated from 3.10.x to 3.13.0, but it was a cache problem. The new version was downloaded, but then the old version was used. I updated my cache key to include the flutter version (previously, I just had cache-key: flutter), and now it works.

- uses: subosito/flutter-action@v2
  with:
    cache: true
    cache-key: flutter-${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }}
    cache-path: ${{ runner.tool_cache }}/flutter
    architecture: x64
    flutter-version: ${{ steps.fvm-config-action.outputs.FLUTTER_VERSION }}