Skip to content

Commit 102ddc5

Browse files
committed
New release with Ormolu 0.5.3.0
1 parent 0290a64 commit 102ddc5

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Ormolu action v10
2+
3+
* Uses Ormolu 0.5.3.0.
4+
15
## Ormolu action v9
26

37
* Uses Ormolu 0.5.2.0.

README.md

+2-2
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@v9
38+
- uses: mrkkrp/ormolu-action@v10
3939
```
4040
4141
However, if you are using a matrix, then it is more efficient to have a
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
steps:
4949
- uses: actions/checkout@v3
50-
- uses: mrkkrp/ormolu-action@v9
50+
- uses: mrkkrp/ormolu-action@v10
5151
build:
5252
runs-on: ubuntu-latest
5353
needs: ormolu

dist/index.js

+1-1
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.2.0';
20+
const ormolu_version = '0.5.3.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

+1-1
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.2.0';
9+
const ormolu_version = '0.5.3.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)