Skip to content

Commit 4807215

Browse files
committed
update simple-ci
1 parent 5076914 commit 4807215

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/haskell-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
#
99
# For more information, see https://github.com/haskell-CI/haskell-ci
1010
#
11-
# version: 0.19.20240514
11+
# version: 0.19.20240513
1212
#
13-
# REGENDATA ("0.19.20240514",["github","postgresql-libpq.cabal"])
13+
# REGENDATA ("0.19.20240513",["github","postgresql-libpq.cabal"])
1414
#
1515
name: Haskell-CI
1616
on:
@@ -196,7 +196,7 @@ jobs:
196196
echo " ghc-options: -Werror=missing-methods" >> cabal.project
197197
cat >> cabal.project <<EOF
198198
EOF
199-
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: any.$_ installed\n" unless /^(postgresql-libpq)$/; }' >> cabal.project.local
199+
$HCPKG list --simple-output --names-only | perl -ne 'for (split /\s+/) { print "constraints: $_ installed\n" unless /^(postgresql-libpq)$/; }' >> cabal.project.local
200200
cat cabal.project
201201
cat cabal.project.local
202202
- name: dump install plan

.github/workflows/simple.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [macos-latest, windows-latest]
17-
ghc: ['8.10','9.0','9.2','9.4.8','9.6.3','9.8.1']
17+
ghc: ['8.10','9.0','9.2','9.4.8','9.6.5','9.8.2']
1818
fail-fast: false
1919
timeout-minutes:
2020
60
@@ -26,24 +26,24 @@ jobs:
2626
2727
- name: Set up Haskell
2828
id: setup-haskell
29-
uses: haskell/actions/setup@v2
29+
uses: haskell-actions/setup@v2
3030
with:
3131
ghc-version: ${{ matrix.ghc }}
3232
cabal-version: '3.10.2.0'
3333

3434
- name: Set up PostgreSQL
35-
uses: ikalnytskyi/action-setup-postgres@v3
35+
uses: ikalnytskyi/action-setup-postgres@v6
3636
id: postgres
3737
with:
3838
username: ci
3939
password: sw0rdfish
4040
database: test
4141

4242
- name: Checkout
43-
uses: actions/checkout@v3.0.2
43+
uses: actions/checkout@v4
4444

4545
- name: Cache
46-
uses: actions/cache@v2.1.3
46+
uses: actions/cache@v4
4747
with:
4848
path: ${{ steps.setup-haskell.outputs.cabal-store }}
4949
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ github.sha }}

0 commit comments

Comments
 (0)