aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--Dockerfile4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f69f21e..8c65686 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -14,7 +14,7 @@ jobs:
build:
strategy:
matrix:
- postgres_version: [12, 13, 14, 15rc1]
+ postgres_version: [12, 13, 14, 15]
runs-on: ubuntu-latest
steps:
diff --git a/Dockerfile b/Dockerfile
index 474d9b4..2bcfa3d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,9 +1,9 @@
-ARG postgres_version=14
+ARG postgres_version=15
FROM postgres:$postgres_version-alpine
ENV PG_CRON_VERSION=1.4.2 \
- PG_REPACK_VERSION=1.4.7
+ PG_REPACK_VERSION=1.4.8
# Install build deps
RUN apk add --no-cache --virtual .build-deps cmake build-base wget postgresql-dev lz4-dev zlib-dev gawk