Skip to content

Commit e1f947e

Browse files
committed
New release with Ormolu 0.5.0.1
1 parent 669d068 commit e1f947e

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 v7
2+
3+
* Uses Ormolu 0.5.0.1.
4+
15
## Ormolu action v6
26

37
* Uses Ormolu 0.5.0.0.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $ git config --global core.autocrlf false
3434
In the simple case all you need to do is to add this step to your job:
3535

3636
```yaml
37-
- uses: mrkkrp/ormolu-action@v6
37+
- uses: mrkkrp/ormolu-action@v7
3838
```
3939
4040
However, if you are using a matrix, then it is more efficient to have a
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- uses: actions/checkout@v2
49-
- uses: mrkkrp/ormolu-action@v6
49+
- uses: mrkkrp/ormolu-action@v7
5050
build:
5151
runs-on: ubuntu-latest
5252
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.0.0';
20+
const ormolu_version = '0.5.0.1';
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.0.0';
9+
const ormolu_version = '0.5.0.1';
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)