Skip to content

Commit aa9fbe0

Browse files
authored
v4.2.10 (#144)
Minor updates * Using latest base images Build updates * Updating GitHub workflows
1 parent d8781e5 commit aa9fbe0

13 files changed

Lines changed: 25 additions & 25 deletions

File tree

.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@v6
13+
uses: actions/checkout@v7
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: 7 additions & 7 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@v6
22+
uses: actions/checkout@v7
2323
-
2424
name: Get repository name
2525
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV
@@ -32,27 +32,27 @@ jobs:
3232
id: version
3333
-
3434
name: Set up QEMU
35-
uses: docker/setup-qemu-action@v3
35+
uses: docker/setup-qemu-action@v4
3636
-
3737
name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@v3
38+
uses: docker/setup-buildx-action@v4
3939
-
4040
name: Login to DockerHub
41-
uses: docker/login-action@v3
41+
uses: docker/login-action@v4
4242
with:
4343
username: ${{ secrets.DOCKERHUB_USERNAME }}
4444
password: ${{ secrets.DOCKERHUB_TOKEN }}
4545
-
4646
name: Login to Quay.io Container Registry
47-
uses: docker/login-action@v3
47+
uses: docker/login-action@v4
4848
with:
4949
registry: quay.io
5050
username: ${{ github.repository_owner }}
5151
password: ${{ secrets.QUAY_TOKEN }}
5252
-
5353
name: Build and export
5454
id: docker_export
55-
uses: docker/build-push-action@v6
55+
uses: docker/build-push-action@v7
5656
with:
5757
file: ./${{ matrix.postgresql }}/Dockerfile
5858
build-args: |
@@ -68,7 +68,7 @@ jobs:
6868
-
6969
name: Build and push
7070
id: docker_build
71-
uses: docker/build-push-action@v6
71+
uses: docker/build-push-action@v7
7272
with:
7373
context: .
7474
file: ./${{ matrix.postgresql }}/Dockerfile

.github/workflows/publish.yml

Lines changed: 6 additions & 6 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@v6
18+
uses: actions/checkout@v7
1919
-
2020
name: Get repository name
2121
run: echo "REPOSITORY_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')" >> $GITHUB_ENV
@@ -46,27 +46,27 @@ jobs:
4646
id: version
4747
-
4848
name: Set up QEMU
49-
uses: docker/setup-qemu-action@v3
49+
uses: docker/setup-qemu-action@v4
5050
-
5151
name: Set up Docker Buildx
52-
uses: docker/setup-buildx-action@v3
52+
uses: docker/setup-buildx-action@v4
5353
-
5454
name: Login to DockerHub
55-
uses: docker/login-action@v3
55+
uses: docker/login-action@v4
5656
with:
5757
username: ${{ secrets.DOCKERHUB_USERNAME }}
5858
password: ${{ secrets.DOCKERHUB_TOKEN }}
5959
-
6060
name: Login to Quay.io Container Registry
61-
uses: docker/login-action@v3
61+
uses: docker/login-action@v4
6262
with:
6363
registry: quay.io
6464
username: ${{ github.repository_owner }}
6565
password: ${{ secrets.QUAY_TOKEN }}
6666
-
6767
name: Build and push
6868
id: docker_build
69-
uses: docker/build-push-action@v6
69+
uses: docker/build-push-action@v7
7070
with:
7171
context: .
7272
file: ./${{ matrix.postgresql }}/Dockerfile

.github/workflows/update-readme.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
shell: bash
1616
-
1717
name: Checkout code
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v7
1919
-
2020
name: Login to DockerHub
21-
uses: docker/login-action@v3
21+
uses: docker/login-action@v4
2222
with:
2323
username: ${{ secrets.DOCKERHUB_USERNAME }}
2424
password: ${{ secrets.DOCKERHUB_TOKEN }}

12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/bfren/alpine-s6:alpine3.18-6.2.0
1+
FROM quay.io/bfren/alpine-s6:alpine3.18-6.3.0
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 quay.io/bfren/alpine-s6:alpine3.19-6.2.0
1+
FROM quay.io/bfren/alpine-s6:alpine3.19-6.3.0
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 quay.io/bfren/alpine-s6:alpine3.20-6.2.0
1+
FROM quay.io/bfren/alpine-s6:alpine3.20-6.3.0
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 quay.io/bfren/alpine-s6:alpine3.22-6.2.0
1+
FROM quay.io/bfren/alpine-s6:alpine3.22-6.3.0
22

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

16/Dockerfile

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

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

17/Dockerfile

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

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

0 commit comments

Comments
 (0)