Skip to content

Commit 631060c

Browse files
authored
v6.0.0 (#163)
Major updates * Using latest base images * Switching to quay.io Build updates * Updating workflow actions
1 parent 6051010 commit 631060c

File tree

12 files changed

+29
-29
lines changed

12 files changed

+29
-29
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/redis:redis${{ matrix.redis }}-dev
8282
bfren/redis:redis${{ matrix.redis }}-${{ steps.version.outputs.contents }}-dev
83-
ghcr.io/bfren/redis:redis${{ matrix.redis }}-dev
84-
ghcr.io/bfren/redis:redis${{ matrix.redis }}-${{ steps.version.outputs.contents }}-dev
83+
quay.io/bfren/redis:redis${{ matrix.redis }}-dev
84+
quay.io/bfren/redis:redis${{ matrix.redis }}-${{ steps.version.outputs.contents }}-dev
8585
-
8686
name: Image digest
8787
run: echo ${{ steps.docker_build.outputs.digest }}

.github/workflows/publish.yml

Lines changed: 13 additions & 13 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
@@ -69,12 +69,12 @@ jobs:
6969
username: ${{ secrets.DOCKERHUB_USERNAME }}
7070
password: ${{ secrets.DOCKERHUB_TOKEN }}
7171
-
72-
name: Login to GitHub Container Registry
72+
name: Login to Quay.io Container Registry
7373
uses: docker/login-action@v3
7474
with:
75-
registry: ghcr.io
75+
registry: quay.io
7676
username: ${{ github.repository_owner }}
77-
password: ${{ secrets.GITHUB_TOKEN }}
77+
password: ${{ secrets.QUAY_TOKEN }}
7878
-
7979
name: Build and push
8080
id: docker_build
@@ -94,11 +94,11 @@ jobs:
9494
bfren/redis:redis${{ steps.redis_minor.outputs.contents }}
9595
bfren/redis:redis${{ steps.redis_minor.outputs.contents }}-${{ steps.version.outputs.contents }}
9696
bfren/redis:redis${{ steps.redis_revision.outputs.contents }}
97-
ghcr.io/bfren/redis:redis${{ steps.redis_major.outputs.contents }}
98-
ghcr.io/bfren/redis:redis${{ steps.redis_major.outputs.contents }}-${{ steps.version.outputs.contents }}
99-
ghcr.io/bfren/redis:redis${{ steps.redis_minor.outputs.contents }}
100-
ghcr.io/bfren/redis:redis${{ steps.redis_minor.outputs.contents }}-${{ steps.version.outputs.contents }}
101-
ghcr.io/bfren/redis:redis${{ steps.redis_revision.outputs.contents }}
97+
quay.io/bfren/redis:redis${{ steps.redis_major.outputs.contents }}
98+
quay.io/bfren/redis:redis${{ steps.redis_major.outputs.contents }}-${{ steps.version.outputs.contents }}
99+
quay.io/bfren/redis:redis${{ steps.redis_minor.outputs.contents }}
100+
quay.io/bfren/redis:redis${{ steps.redis_minor.outputs.contents }}-${{ steps.version.outputs.contents }}
101+
quay.io/bfren/redis:redis${{ steps.redis_revision.outputs.contents }}
102102
-
103103
name: Build and push default
104104
id: docker_build_default
@@ -118,10 +118,10 @@ jobs:
118118
bfren/redis:${{ steps.version_major.outputs.contents }}
119119
bfren/redis:${{ steps.version_minor.outputs.contents }}
120120
bfren/redis:${{ steps.version.outputs.contents }}
121-
ghcr.io/bfren/redis:latest
122-
ghcr.io/bfren/redis:${{ steps.version_major.outputs.contents }}
123-
ghcr.io/bfren/redis:${{ steps.version_minor.outputs.contents }}
124-
ghcr.io/bfren/redis:${{ steps.version.outputs.contents }}
121+
quay.io/bfren/redis:latest
122+
quay.io/bfren/redis:${{ steps.version_major.outputs.contents }}
123+
quay.io/bfren/redis:${{ steps.version_minor.outputs.contents }}
124+
quay.io/bfren/redis:${{ steps.version.outputs.contents }}
125125
-
126126
name: Image digest
127127
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

6/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.15-5.6.7
1+
FROM quay.io/bfren/alpine-s6:alpine3.15-6.0.1
22

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

7/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.21-5.6.7
1+
FROM quay.io/bfren/alpine-s6:alpine3.21-6.0.1
22

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

8/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-redis"
44

Dockerfile.esh

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:alpine<%= ${ALPINE_EDITION} %>-<%= ${BASE_VERSION} %>
1+
FROM quay.io/bfren/alpine-s6:alpine<%= ${ALPINE_EDITION} %>-<%= ${BASE_VERSION} %>
22

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.4.5
1+
6.0.0

VERSION_MAJOR

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5
1+
6

0 commit comments

Comments
 (0)