Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
Below are github's CI complaints:

> The following actions uses node12 which is deprecated and will be forced to
> run on node16: actions/checkout@v2, actions/cache@v1. For more info:
> https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/

> As of 2023-09-09, haskell/action/setup is no longer maintained, please switch to
> haskell-actions/setup (note: dash for slash).
  • Loading branch information
Shimuuar committed Oct 6, 2023
1 parent 54043d2 commit 75e10ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ jobs:

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@v2
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
# ----------------
- uses: actions/cache@v1
- uses: actions/cache@v3
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
Expand Down

0 comments on commit 75e10ec

Please sign in to comment.