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:
60
60
> flutter: ">= 3.19.0 <4.0.0"
61
61
> ```
62
62
63
- > [!WARNING ]
63
+ > [!NOTE ]
64
64
>
65
65
> 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.
67
69
68
70
# ## Use latest release for particular channel
69
71
Original file line number Diff line number Diff line change @@ -73,6 +73,14 @@ outputs:
73
73
runs :
74
74
using : composite
75
75
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
+
76
84
- name : Make setup script executable
77
85
run : chmod +x "$GITHUB_ACTION_PATH/setup.sh"
78
86
shell : bash
You can’t perform that action at this time.
0 commit comments