Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/create-message-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
name: Testing create-message-template.hs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: haskell/actions/setup@v2
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
- run: test/create-message-template/test.sh
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:

steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Haskell Toolchain
uses: haskell/actions/setup@v2
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
Expand All @@ -35,9 +35,9 @@ jobs:
# cabal build --dry-run creates dist-newstyle/cache/plan.json
# Keep a watch on this `cabal-3.9 build --dry-run` bug:
# https://github.com/haskell/cabal/issues/8706

- name: Read the Cabal cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cabal/store
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
name: Fend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v4
- uses: njgibbon/fend@main
2 changes: 1 addition & 1 deletion .github/workflows/hlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Needed to upload results to GitHub code scanning.
security-events: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check site.hs with hlint
uses: haskell-actions/hlint-scan@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ormolu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Ormolu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check if site.hs is formatted using ormolu
uses: mrkkrp/ormolu-action@v11
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pullrequest-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
matrix:
ghc: ["9.2.5"]
cabal: ["3.10.1"]

defaults:
run:
working-directory: message-index

steps:
- name: Check out repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Haskell Toolchain
uses: haskell/actions/setup@v2
uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
Expand All @@ -35,9 +35,9 @@ jobs:
# cabal build --dry-run creates dist-newstyle/cache/plan.json
# Keep a watch on this `cabal-3.9 build --dry-run` bug:
# https://github.com/haskell/cabal/issues/8706

- name: Read the Cabal cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cabal/store
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stack-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Stack CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: freckle/stack-action@v4
with:
working-directory: message-index
Expand Down