File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -60,10 +60,12 @@ steps:
6060> flutter: ">= 3.19.0 <4.0.0"
6161> ```
6262
63- > [!WARNING ]
63+ > [!NOTE ]
6464>
6565> Using `flutter-version-file` requires [`yq`](https://github.com/mikefarah/yq),
66- > which is not pre-installed in `windows` images. Install it yourself.
66+ > which is not pre-installed in `windows` runners. Fortunately, since version
67+ > 2.18.0, this action installs `yq` automatically, so no action is required from
68+ > you.
6769
6870# ## Use latest release for particular channel
6971
Original file line number Diff line number Diff line change @@ -73,6 +73,14 @@ outputs:
7373runs :
7474 using : composite
7575 steps :
76+ # This is a cross-platform composite action that needs yq.
77+ # It's not preinstalled on Windows runners.
78+ # See https://github.com/actions/runner-images/issues/7443#issuecomment-1514597691
79+ - name : Make yq tool available on Windows runners
80+ if : runner.os == 'Windows'
81+ run : choco install yq
82+ shell : bash
83+
7684 - name : Make setup script executable
7785 run : chmod +x "$GITHUB_ACTION_PATH/setup.sh"
7886 shell : bash
You can’t perform that action at this time.
0 commit comments