Skip to content

Commit 48677ba

Browse files
authored
v2.3.9 (#72)
Minor updates * Using latest base images * Updating to PostgreSQL 12.14, 13.10, 14.7 and 15.2 Build updates * Adding update readme action * Updating build push action
1 parent 75f2875 commit 48677ba

File tree

17 files changed

+47
-16
lines changed

17 files changed

+47
-16
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
-
4949
name: Build and push
5050
id: docker_build
51-
uses: docker/build-push-action@v3
51+
uses: docker/build-push-action@v4
5252
with:
5353
context: .
5454
file: ./${{ matrix.postgresql }}/Dockerfile

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
-
6060
name: Build and push
6161
id: docker_build
62-
uses: docker/build-push-action@v3
62+
uses: docker/build-push-action@v4
6363
with:
6464
context: .
6565
file: ./${{ matrix.postgresql }}/Dockerfile
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: update-readme
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_dispatch:
7+
8+
jobs:
9+
update_readme:
10+
runs-on: ubuntu-latest
11+
steps:
12+
-
13+
name: Get repository name
14+
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | sed "s/bfren\/docker-//")" >> $GITHUB_ENV
15+
shell: bash
16+
-
17+
name: Checkout code
18+
uses: actions/checkout@v3
19+
-
20+
name: Login to DockerHub
21+
uses: docker/login-action@v2
22+
with:
23+
username: ${{ secrets.DOCKERHUB_USERNAME }}
24+
password: ${{ secrets.DOCKERHUB_TOKEN }}
25+
-
26+
name: Update repo description with README.md
27+
uses: peter-evans/dockerhub-description@v3
28+
with:
29+
username: ${{ secrets.DOCKERHUB_USERNAME }}
30+
password: ${{ secrets.DOCKERHUB_TOKEN }}
31+
repository: bfren/${{ env.REPOSITORY_NAME }}

12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.17-4.4.8
1+
FROM bfren/alpine-s6:alpine3.17-4.4.9
22

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

12/overlay/tmp/POSTGRESQL_BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.13-r1
1+
12.14-r0

12/overlay/tmp/POSTGRESQL_MINOR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
12.13
1+
12.14

13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.17-4.4.8
1+
FROM bfren/alpine-s6:alpine3.17-4.4.9
22

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

13/overlay/tmp/POSTGRESQL_BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
13.9-r1
1+
13.10-r0

13/overlay/tmp/POSTGRESQL_MINOR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
13.9
1+
13.10

14/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.17-4.4.8
1+
FROM bfren/alpine-s6:alpine3.17-4.4.9
22

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

0 commit comments

Comments
 (0)