From 102ddc506ef336e60b026de6dfe2e8506df3e000 Mon Sep 17 00:00:00 2001 From: Mark Karpov Date: Wed, 8 Feb 2023 11:45:29 +0100 Subject: [PATCH] New release with Ormolu 0.5.3.0 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- dist/index.js | 2 +- index.js | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3aa15b4..f1dc648 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Ormolu action v10 + +* Uses Ormolu 0.5.3.0. + ## Ormolu action v9 * Uses Ormolu 0.5.2.0. diff --git a/README.md b/README.md index a956294..ae8f7e5 100644 --- a/README.md +++ b/README.md @@ -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@v9 +- uses: mrkkrp/ormolu-action@v10 ``` However, if you are using a matrix, then it is more efficient to have a @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: mrkkrp/ormolu-action@v9 + - uses: mrkkrp/ormolu-action@v10 build: runs-on: ubuntu-latest needs: ormolu diff --git a/dist/index.js b/dist/index.js index c8c4a57..9edf26e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -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.2.0'; +const ormolu_version = '0.5.3.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'; diff --git a/index.js b/index.js index 6a5cb35..1d12018 100644 --- a/index.js +++ b/index.js @@ -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.2.0'; +const ormolu_version = '0.5.3.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';