Skip to content

Commit 2ff1427

Browse files
authored
v5.1.16 (#135)
Minor updates * Using latest base image Build updates * Adding update readme action * Updating build push action
1 parent 9f427f4 commit 2ff1427

File tree

5 files changed

+35
-4
lines changed

5 files changed

+35
-4
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
-
4545
name: Build and push
4646
id: docker_build
47-
uses: docker/build-push-action@v3
47+
uses: docker/build-push-action@v4
4848
with:
4949
build-args: |
5050
BF_IMAGE=${{ env.REPOSITORY_NAME }}

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
-
5050
name: Build and push
5151
id: docker_build
52-
uses: docker/build-push-action@v3
52+
uses: docker/build-push-action@v4
5353
with:
5454
build-args: |
5555
BF_IMAGE=${{ env.REPOSITORY_NAME }}

.github/workflows/update-readme.yml

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 }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/nginx:nginx1.22-4.0.27
1+
FROM bfren/nginx:nginx1.22-4.0.28
22

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.15
1+
5.1.16

0 commit comments

Comments
 (0)