Skip to content

Commit bb46120

Browse files
authored
Works to bump PG 15 and PG 16 to the latest patch version (15.10 and 16.6) (#270)
1 parent 22f900c commit bb46120

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Diff for: .github/workflows/ci.yaml

+8-8
Original file line numberDiff line numberDiff line change
@@ -36,61 +36,61 @@ jobs:
3636
uses: docker/build-push-action@v3
3737
with:
3838
build-args: |
39-
PG_VERSION=15.8
39+
PG_VERSION=15.10
4040
PG_MAJOR_VERSION=15
4141
VERSION=${{ steps.get-latest-tag.outputs.tag }}
4242
context: .
4343
file: ./pg15/Dockerfile
4444
push: true
4545
tags: |
4646
flyio/postgres-flex:15
47-
flyio/postgres-flex:15.8
47+
flyio/postgres-flex:15.10
4848
-
4949
name: Build and push Postgres 15 Timescale DB
5050
id: docker_build_15_timescaledb
5151
uses: docker/build-push-action@v3
5252
with:
5353
build-args: |
54-
PG_VERSION=15.8
54+
PG_VERSION=15.10
5555
PG_MAJOR_VERSION=15
5656
VERSION=${{ steps.get-latest-tag.outputs.tag }}
5757
context: .
5858
file: ./pg15/Dockerfile-timescaledb
5959
push: true
6060
tags: |
6161
flyio/postgres-flex-timescaledb:15
62-
flyio/postgres-flex-timescaledb:15.8
62+
flyio/postgres-flex-timescaledb:15.10
6363
6464
-
6565
name: Build and push Postgres 16
6666
id: docker_build_16
6767
uses: docker/build-push-action@v3
6868
with:
6969
build-args: |
70-
PG_VERSION=16.4
70+
PG_VERSION=16.6
7171
PG_MAJOR_VERSION=16
7272
VERSION=${{ steps.get-latest-tag.outputs.tag }}
7373
context: .
7474
file: ./pg16/Dockerfile
7575
push: true
7676
tags: |
7777
flyio/postgres-flex:16
78-
flyio/postgres-flex:16.4
78+
flyio/postgres-flex:16.6
7979
-
8080
name: Build and push Postgres 16 Timescale DB
8181
id: docker_build_16_timescaledb
8282
uses: docker/build-push-action@v3
8383
with:
8484
build-args: |
85-
PG_VERSION=16.4
85+
PG_VERSION=16.6
8686
PG_MAJOR_VERSION=16
8787
VERSION=${{ steps.get-latest-tag.outputs.tag }}
8888
context: .
8989
file: ./pg16/Dockerfile-timescaledb
9090
push: true
9191
tags: |
9292
flyio/postgres-flex-timescaledb:16
93-
flyio/postgres-flex-timescaledb:16.4
93+
flyio/postgres-flex-timescaledb:16.6
9494
-
9595
name: Postgres 15 Image digest
9696
run: echo ${{ steps.docker_build_15.outputs.digest }}

Diff for: pg15/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PG_VERSION=15.8
1+
ARG PG_VERSION=15.10
22
ARG PG_MAJOR_VERSION=15
33
ARG VERSION=custom
44

Diff for: pg15/Dockerfile-timescaledb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PG_VERSION=15.8
1+
ARG PG_VERSION=15.10
22
ARG PG_MAJOR_VERSION=15
33
ARG VERSION=custom
44

Diff for: pg16/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PG_VERSION=16.4
1+
ARG PG_VERSION=16.6
22
ARG PG_MAJOR_VERSION=16
33
ARG VERSION=custom
44

Diff for: pg16/Dockerfile-timescaledb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG PG_VERSION=16.4
1+
ARG PG_VERSION=16.6
22
ARG PG_MAJOR_VERSION=16
33
ARG VERSION=custom
44

0 commit comments

Comments
 (0)