New release v15

This commit is contained in:
Mark Karpov 2024-02-16 15:38:54 +01:00
parent 759ee2ffad
commit 15b0083a0e
No known key found for this signature in database
GPG Key ID: 8564658B2889FF7C
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
## Ormolu action v15
* Uses Ormolu 0.7.4.0 as the latest version.
## Ormolu action v14
* Added the `mode` input. [PR

View File

@ -38,7 +38,7 @@ $ git config --global core.autocrlf false
In the simple case all you need to do is to add this step to your job:
```yaml
- uses: haskell-actions/run-ormolu@v14
- uses: haskell-actions/run-ormolu@v15
```
However, if you are using a matrix, then it is more efficient to have a
@ -49,8 +49,8 @@ jobs:
ormolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: haskell-actions/run-ormolu@v14
- uses: actions/checkout@v4
- uses: haskell-actions/run-ormolu@v15
build:
runs-on: ubuntu-latest
needs: ormolu