Skip to content

Commit

Permalink
ci: bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Aug 22, 2024
1 parent cff8882 commit 64d4006
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
ghc: 8.6.5

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'

- uses: haskell/actions/setup@v1
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell (Cabal)
with:
Expand All @@ -45,7 +45,7 @@ jobs:
run: |
cabal freeze
- uses: actions/cache@v1
- uses: actions/cache@v4
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
Expand All @@ -67,7 +67,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
stack: ["2.7.5"]
stack: "latest"
resolver:
- lts-14 # 8.6.5
- lts-16 # 8.8.4
Expand All @@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v2
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'

- uses: haskell/actions/setup@v1
- uses: haskell-actions/setup@v2
name: Setup Haskell (Stack)
with:
enable-stack: true
Expand All @@ -102,7 +102,7 @@ jobs:
echo STACK_EXTRA_ARGS="$STACK_EXTRA_ARGS" >> $GITHUB_ENV
- uses: actions/cache@v1
- uses: actions/cache@v4
name: Cache ~/.stack
with:
path: ~/.stack
Expand Down

0 comments on commit 64d4006

Please sign in to comment.