summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Batischev <eual.jp@gmail.com>2020-11-17 21:23:37 +0300
committerGitHub <noreply@github.com>2020-11-17 21:23:37 +0300
commita9e877c43445cfdb7b1de1fb7ed9b626700851a3 (patch)
tree38d47a19ae049df4e8a8d1155bc35ce9df888ef6
parent850cf285897c22d2f8892695217a6085c2ce4875 (diff)
downloadhakyll-a9e877c43445cfdb7b1de1fb7ed9b626700851a3.tar.gz
Update actions/setup-haskell to 1.1.3 (#818)
-rw-r--r--.github/workflows/main.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index bfb65f2..a365310 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -10,6 +10,9 @@ jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
+ env:
+ # Workaround for actions/setup-haskell@1.1.3 on Windows: https://github.com/actions/runner/pull/779
+ ACTIONS_ALLOW_UNSECURE_COMMANDS: true
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
@@ -32,7 +35,7 @@ jobs:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
- - uses: actions/setup-haskell@v1.1.1
+ - uses: actions/setup-haskell@v1.1.3
id: setup-haskell-cabal
name: Setup Haskell
with:
@@ -70,7 +73,7 @@ jobs:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'
- - uses: actions/setup-haskell@v1.1
+ - uses: actions/setup-haskell@v1.1.3
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}