Skip to content

Commit c53a7f8

Browse files
authored
Merge pull request #622 from haskell-CI/postgres-14
Use postgres 14
2 parents bf34164 + 09cbc0f commit c53a7f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

fixtures/psql.github

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
image: buildpack-deps:bionic
2727
services:
2828
postgres:
29-
image: postgres:10
29+
image: postgres:14
3030
env:
3131
POSTGRES_PASSWORD: postgres
3232
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

haskell-ci.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: haskell-ci
3-
version: 0.15.20220920
3+
version: 0.15.20221009
44
synopsis: Cabal package script generator for Travis-CI
55
description:
66
Script generator (@haskell-ci@) for

src/HaskellCI/GitHub.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ makeGitHub _argv config@Config {..} gitconfig prj jobs@JobVersions {..} = do
755755

756756
postgresService :: GitHubService
757757
postgresService = GitHubService
758-
{ ghServImage = "postgres:10"
758+
{ ghServImage = "postgres:14"
759759
, ghServOptions = Just "--health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5"
760760
, ghServEnv = Map.fromList
761761
[ ("POSTGRES_PASSWORD", "postgres")

0 commit comments

Comments
 (0)