Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Release 17-3.5 #31

Merged
merged 5 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release-pgpool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
schedule:
- cron: '19 3 * * *'
push:
branches: [ main, 15-3.3, 17-3.4 ]
branches: [ main, 15-3.3, 17-3.5 ]

env:
LATEST: '17-3.4'
LATEST: '17-3.5'
REGISTRY: docker.io
IMAGE_NAME: ${{ github.repository }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
schedule:
- cron: '19 3 * * *'
push:
branches: [ main, 15-3.3, 17-3.4 ]
branches: [ main, 15-3.3, 17-3.5 ]

env:
LATEST: '17-3.4'
LATEST: '17-3.5'
REGISTRY: docker.io
IMAGE_NAME: ${{ github.repository }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM postgres:17-bullseye

ENV POSTGIS_MAJOR 3

Check warning on line 3 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV POSTGIS_VERSION 3.4.3+dfsg-2.pgdg110+1
ENV POSTGIS_VERSION 3.5.0+dfsg-1.pgdg110+1

Check warning on line 4 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV POSTGRES_INITDB_ARGS "--data-checksums"

Check warning on line 5 in Dockerfile

View workflow job for this annotation

GitHub Actions / docker

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apt-get update \
&& apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.pgpool
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM postgres:17-bullseye

ENV POSTGIS_MAJOR 3

Check warning on line 3 in Dockerfile.pgpool

View workflow job for this annotation

GitHub Actions / docker

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV POSTGIS_VERSION 3.4.3+dfsg-2.pgdg110+1
ENV POSTGIS_VERSION 3.5.0+dfsg-1.pgdg110+1

Check warning on line 4 in Dockerfile.pgpool

View workflow job for this annotation

GitHub Actions / docker

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/
ENV POSTGRES_INITDB_ARGS "--data-checksums"

Check warning on line 5 in Dockerfile.pgpool

View workflow job for this annotation

GitHub Actions / docker

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

RUN apt-get update \
&& apt-cache showpkg postgresql-$PG_MAJOR-postgis-$POSTGIS_MAJOR \
Expand Down