We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 629376b commit b4ab2c9Copy full SHA for b4ab2c9
.github/workflows/lint.yml
@@ -32,10 +32,12 @@ jobs:
32
runs-on: ubuntu-24.04
33
steps:
34
- uses: actions/checkout@v4
35
- - uses: jdx/mise-action@0c39a522dfbced3ed83924152c45804a71ce216f # v2.0.4
36
- with:
37
- mise_toml: |
38
- [tools]
39
- # TODO: Apply selfup after https://github.com/google/yamlfmt/pull/180
40
- yamlfmt = "0.12.1"
+ - name: Install mise
+ run: |
+ curl https://mise.jdx.dev/install.sh | sh
+ echo "$HOME/.local/share/mise/bin" >> $GITHUB_PATH
+ echo "$HOME/.local/share/mise/shims" >> $GITHUB_PATH
+ - name: Install yamlfmt
41
+ # TODO: Apply selfup after https://github.com/google/yamlfmt/pull/180
42
+ run: mise use -g yamlfmt@0.12.1
43
- run: yamlfmt -lint .
0 commit comments