Skip to content

Commit e517a46

Browse files
committed
Making PostgreSQL 17 the default
1 parent a67662f commit e517a46

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
postgresql: [ "12", "13", "14", "15", "16" ]
17+
postgresql: [ "12", "13", "14", "15", "16", "17" ]
1818
runs-on: ubuntu-latest
1919
steps:
2020
-

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
postgresql: [ "12", "13", "14", "15", "16" ]
13+
postgresql: [ "12", "13", "14", "15", "16", "17" ]
1414
runs-on: ubuntu-latest
1515
steps:
1616
-

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
IMAGE=`cat VERSION`
4-
POSTGRESQL=${1:-16}
4+
POSTGRESQL=${1:-17}
55

66
docker buildx build \
77
--load \

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
IMAGE=postgresql
44
VERSION=`cat VERSION`
5-
POSTGRESQL=${1:-16}
5+
POSTGRESQL=${1:-17}
66
TAG=${IMAGE}-test
77

88
docker buildx build \

0 commit comments

Comments
 (0)