summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Becich <peterbecich@gmail.com>2021-07-06 06:33:23 -0700
committerGitHub <noreply@github.com>2021-07-06 16:33:23 +0300
commitb273db4d067ef54248e9a52adedd3e558907d541 (patch)
tree4e545c83fa19302386d54f153cea77eea5357736
parent6885325146aa46adf255c55de0e0345a0f84961e (diff)
downloadhakyll-b273db4d067ef54248e9a52adedd3e558907d541.tar.gz
update Github Actions (#859)
* update Github Actions https://github.com/actions/setup-haskell has been archived. I believe https://github.com/haskell/actions/tree/main/setup is current. * try to fix stalling CI job
-rw-r--r--.github/workflows/main.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 12276e3..86e5b92 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -13,18 +13,18 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
- cabal: ["3.2"]
+ cabal: ["3.4"]
ghc:
- "8.6.5"
- - "8.8.3"
- - "8.10.1"
+ - "8.8.4"
+ - "8.10.4"
exclude:
- os: macOS-latest
- ghc: 8.8.3
+ ghc: 8.8.4
- os: macOS-latest
ghc: 8.6.5
- os: windows-latest
- ghc: 8.8.3
+ ghc: 8.8.4
- os: windows-latest
ghc: 8.6.5
@@ -32,7 +32,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.4
+ - uses: haskell/actions/setup@v1
id: setup-haskell-cabal
name: Setup Haskell
with:
@@ -63,14 +63,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- stack: ["2.3.1"]
- ghc: ["8.8.3"]
+ stack: ["2.7.1"]
+ ghc: ["8.8.4"]
steps:
- 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.4
+ - uses: haskell/actions/setup@v1
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}