Skip to content

Commit 845d3df

Browse files
Bump postgres from 16-bullseye to 17-bullseye (#30)
* Bump postgres from 16-bullseye to 17-bullseye Bumps postgres from 16-bullseye to 17-bullseye. --- updated-dependencies: - dependency-name: postgres dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update Dockerfile * Update Dockerfile.pgpool * Update release.yml * Update release-pgpool.yml * Update build.yml * Update build-pgpool.yml * Update Dockerfile * Update Dockerfile.pgpool * Update release.yml * Update release-pgpool.yml --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Corey <coreyearleon@icloud.com>
1 parent 57e3410 commit 845d3df

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/build-pgpool.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
uses: docker/build-push-action@v6
5151
with:
5252
file: Dockerfile.pgpool
53-
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
53+
platforms: linux/amd64, linux/arm64/v8
5454
push: ${{ github.event_name != 'pull_request' && github.event_name != 'merge_group' }}
5555
tags: ${{ steps.meta.outputs.tags }}
5656
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
- name: Build and push Docker image
4949
uses: docker/build-push-action@v6
5050
with:
51-
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
51+
platforms: linux/amd64, linux/arm64/v8
5252
push: ${{ github.event_name != 'pull_request' && github.event_name != 'merge_group' }}
5353
tags: ${{ steps.meta.outputs.tags }}
5454
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/release-pgpool.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on:
44
schedule:
55
- cron: '19 3 * * *'
66
push:
7-
branches: [ main, 15-3.3, 16-3.4 ]
7+
branches: [ main, 15-3.3, 17-3.4 ]
88

99
env:
10-
LATEST: '16-3.4'
10+
LATEST: '17-3.4'
1111
REGISTRY: docker.io
1212
IMAGE_NAME: ${{ github.repository }}
1313

@@ -57,7 +57,7 @@ jobs:
5757
uses: docker/build-push-action@v6
5858
with:
5959
file: Dockerfile.pgpool
60-
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
60+
platforms: linux/amd64, linux/arm64/v8
6161
push: ${{ github.event_name != 'pull_request' }}
6262
tags: ${{ steps.meta.outputs.tags }}
6363
labels: ${{ steps.meta.outputs.labels }}

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on:
44
schedule:
55
- cron: '19 3 * * *'
66
push:
7-
branches: [ main, 15-3.3, 16-3.4 ]
7+
branches: [ main, 15-3.3, 17-3.4 ]
88

99
env:
10-
LATEST: '16-3.4'
10+
LATEST: '17-3.4'
1111
REGISTRY: docker.io
1212
IMAGE_NAME: ${{ github.repository }}
1313

@@ -74,7 +74,7 @@ jobs:
7474
if: env.BRANCH == env.LATEST
7575
uses: docker/build-push-action@v6
7676
with:
77-
platforms: linux/amd64, linux/arm64/v8, linux/ppc64le
77+
platforms: linux/amd64, linux/arm64/v8
7878
push: ${{ github.event_name != 'pull_request' }}
7979
tags: ${{ steps.meta-latest.outputs.tags }}
8080
labels: ${{ steps.meta-latest.outputs.labels }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM postgres:16-bullseye
1+
FROM postgres:17-bullseye
22

33
ENV POSTGIS_MAJOR 3
4-
ENV POSTGIS_VERSION 3.4.2+dfsg-1.pgdg110+1
4+
ENV POSTGIS_VERSION 3.4.3+dfsg-2.pgdg110+1
55
ENV POSTGRES_INITDB_ARGS "--data-checksums"
66

77
RUN apt-get update \

Dockerfile.pgpool

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM postgres:16-bullseye
1+
FROM postgres:17-bullseye
22

33
ENV POSTGIS_MAJOR 3
4-
ENV POSTGIS_VERSION 3.4.2+dfsg-1.pgdg110+1
4+
ENV POSTGIS_VERSION 3.4.3+dfsg-2.pgdg110+1
55
ENV POSTGRES_INITDB_ARGS "--data-checksums"
66

77
RUN apt-get update \

0 commit comments

Comments
 (0)