summaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/main.yml')
-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 }}