Skip to content

Commit

Permalink
New release with Ormolu 0.5.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkkrp committed Jan 5, 2023
1 parent 6f7817e commit 0d448c5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## Ormolu action v9

* Uses Ormolu 0.5.2.0.

## Ormolu action v8

* Uses Ormolu 0.5.1.0.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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: mrkkrp/ormolu-action@v8
- uses: mrkkrp/ormolu-action@v9
```
However, if you are using a matrix, then it is more efficient to have a
Expand All @@ -46,8 +46,8 @@ jobs:
ormolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: mrkkrp/ormolu-action@v8
- uses: actions/checkout@v3
- uses: mrkkrp/ormolu-action@v9
build:
runs-on: ubuntu-latest
needs: ormolu
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const tool_cache = __webpack_require__(7784);
const exec = __webpack_require__(1514);
const glob = __webpack_require__(8090);

const ormolu_version = '0.5.1.0';
const ormolu_version = '0.5.2.0';
const ormolu_linux_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-Linux.zip';
const ormolu_windows_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-Windows.zip';
const ormolu_macos_url = 'https://github.com/tweag/ormolu/releases/download/' + ormolu_version + '/ormolu-macOS.zip';
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const tool_cache = require('@actions/tool-cache');
const exec = require('@actions/exec');
const glob = require('@actions/glob');

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

0 comments on commit 0d448c5

Please sign in to comment.