Skip to content

Commit b058afb

Browse files
authored
v4.0.0 (#132)
Major updates * Using latest base images * Switching to quay.io Minor updates * Updating to PostgreSQL 15.15, 16.11 and 17.7 * Using crontab add Build updates * Updating workflow actions
1 parent 91ec642 commit b058afb

File tree

22 files changed

+36
-36
lines changed

22 files changed

+36
-36
lines changed

.github/workflows/auto-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
-
1212
name: Checkout Branch ${{ github.ref_name }}
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
-
1515
name: Create Pull Request
1616
run: gh pr create -B main --title "${{ github.ref_name }}" --body "Merging branch to create ${{ github.ref_name }}."

.github/workflows/dev.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
-
2121
name: Checkout code
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v6
2323
-
2424
name: Get repository name
2525
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV
@@ -43,12 +43,12 @@ jobs:
4343
username: ${{ secrets.DOCKERHUB_USERNAME }}
4444
password: ${{ secrets.DOCKERHUB_TOKEN }}
4545
-
46-
name: Login to GitHub Container Registry
46+
name: Login to Quay.io Container Registry
4747
uses: docker/login-action@v3
4848
with:
49-
registry: ghcr.io
49+
registry: quay.io
5050
username: ${{ github.repository_owner }}
51-
password: ${{ secrets.GITHUB_TOKEN }}
51+
password: ${{ secrets.QUAY_TOKEN }}
5252
-
5353
name: Build and export
5454
id: docker_export
@@ -80,8 +80,8 @@ jobs:
8080
tags: |
8181
bfren/postgresql:postgresql${{ matrix.postgresql }}-dev
8282
bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version.outputs.contents }}-dev
83-
ghcr.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-dev
84-
ghcr.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version.outputs.contents }}-dev
83+
quay.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-dev
84+
quay.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version.outputs.contents }}-dev
8585
-
8686
name: Image digest
8787
run: echo ${{ steps.docker_build.outputs.digest }}

.github/workflows/publish.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
-
1717
name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
-
2020
name: Get repository name
2121
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV
@@ -57,12 +57,12 @@ jobs:
5757
username: ${{ secrets.DOCKERHUB_USERNAME }}
5858
password: ${{ secrets.DOCKERHUB_TOKEN }}
5959
-
60-
name: Login to GitHub Container Registry
60+
name: Login to Quay.io Container Registry
6161
uses: docker/login-action@v3
6262
with:
63-
registry: ghcr.io
63+
registry: quay.io
6464
username: ${{ github.repository_owner }}
65-
password: ${{ secrets.GITHUB_TOKEN }}
65+
password: ${{ secrets.QUAY_TOKEN }}
6666
-
6767
name: Build and push
6868
id: docker_build
@@ -83,12 +83,12 @@ jobs:
8383
bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version.outputs.contents }}
8484
bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}
8585
bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}-${{ steps.version.outputs.contents }}
86-
ghcr.io/bfren/postgresql:postgresql${{ matrix.postgresql }}
87-
ghcr.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version_major.outputs.contents }}
88-
ghcr.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version_minor.outputs.contents }}
89-
ghcr.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version.outputs.contents }}
90-
ghcr.io/bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}
91-
ghcr.io/bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}-${{ steps.version.outputs.contents }}
86+
quay.io/bfren/postgresql:postgresql${{ matrix.postgresql }}
87+
quay.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version_major.outputs.contents }}
88+
quay.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version_minor.outputs.contents }}
89+
quay.io/bfren/postgresql:postgresql${{ matrix.postgresql }}-${{ steps.version.outputs.contents }}
90+
quay.io/bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}
91+
quay.io/bfren/postgresql:postgresql${{ steps.postgresql_minor.outputs.contents }}-${{ steps.version.outputs.contents }}
9292
-
9393
name: Image digest
9494
run: echo ${{ steps.docker_build.outputs.digest }}

.github/workflows/update-readme.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
shell: bash
1616
-
1717
name: Checkout code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
-
2020
name: Login to DockerHub
2121
uses: docker/login-action@v3

12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/bfren/alpine-s6:alpine3.18-5.6.7
1+
FROM quay.io/bfren/alpine-s6:alpine3.18-6.0.1
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"
44

13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/bfren/alpine-s6:alpine3.19-5.6.7
1+
FROM quay.io/bfren/alpine-s6:alpine3.19-6.0.1
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"
44

14/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.6.7
1+
FROM quay.io/bfren/alpine-s6:alpine3.20-6.0.1
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"
44

15/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/bfren/alpine-s6:alpine3.22-5.6.7
1+
FROM quay.io/bfren/alpine-s6:alpine3.22-6.0.1
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"
44

15/overlay/tmp/POSTGRESQL_BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
15.14-r0
1+
15.15-r0

15/overlay/tmp/POSTGRESQL_MINOR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
15.14
1+
15.15

0 commit comments

Comments
 (0)