Skip to content

Commit 0d448c5

Browse files
committed
New release with Ormolu 0.5.2.0
1 parent 6f7817e commit 0d448c5

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Ormolu action v9
2+
3+
* Uses Ormolu 0.5.2.0.
4+
15
## Ormolu action v8
26

37
* Uses Ormolu 0.5.1.0.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $ git config --global core.autocrlf false
3535
In the simple case all you need to do is to add this step to your job:
3636

3737
```yaml
38-
- uses: mrkkrp/ormolu-action@v8
38+
- uses: mrkkrp/ormolu-action@v9
3939
```
4040
4141
However, if you are using a matrix, then it is more efficient to have a
@@ -46,8 +46,8 @@ jobs:
4646
ormolu:
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@v2
50-
- uses: mrkkrp/ormolu-action@v8
49+
- uses: actions/checkout@v3
50+
- uses: mrkkrp/ormolu-action@v9
5151
build:
5252
runs-on: ubuntu-latest
5353
needs: ormolu

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const tool_cache = __webpack_require__(7784);
1717
const exec = __webpack_require__(1514);
1818
const glob = __webpack_require__(8090);
1919

20-
const ormolu_version = '0.5.1.0';
20+
const ormolu_version = '0.5.2.0';
2121
const ormolu_linux_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-Linux.zip';
2222
const ormolu_windows_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-Windows.zip';
2323
const ormolu_macos_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-macOS.zip';

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const tool_cache = require('@actions/tool-cache');
66
const exec = require('@actions/exec');
77
const glob = require('@actions/glob');
88

9-
const ormolu_version = '0.5.1.0';
9+
const ormolu_version = '0.5.2.0';
1010
const ormolu_linux_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-Linux.zip';
1111
const ormolu_windows_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-Windows.zip';
1212
const ormolu_macos_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-macOS.zip';

0 commit comments

Comments
 (0)