Skip to content

Commit 5b4ac8c

Browse files
authored
v2.1.8 (#33)
Minor updates * Using latest base images Build updates * Moving conditional in auto workflows
1 parent a1ff1c1 commit 5b4ac8c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/auto-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ on:
55

66
jobs:
77
create-pr:
8+
if: github.ref_type == 'branch'
89
runs-on: ubuntu-latest
9-
if: ${{ github.ref_type == 'branch' }}
1010
steps:
1111
-
1212
name: Checkout Branch ${{ github.ref_name }}

.github/workflows/auto-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ on:
66

77
jobs:
88
create-release:
9+
if: github.event.pull_request.merged
910
runs-on: ubuntu-latest
1011
steps:
1112
-
12-
if: github.event.pull_request.merged == true
1313
name: Get Pull Request Title
1414
run: echo "PR_TITLE=${{ github.event.pull_request.title }}" >> $GITHUB_ENV
1515
shell: bash

5.6/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/apache:apache2.4.4x-2.1.6
1+
FROM bfren/apache:apache2.4.4x-2.1.7
22

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

7.4/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/apache:apache2.4.5x-2.1.6
1+
FROM bfren/apache:apache2.4.5x-2.1.7
22

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

8.0/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/apache:apache2.4.5x-2.1.6
1+
FROM bfren/apache:apache2.4.5x-2.1.7
22

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.7
1+
2.1.8

generate-dockerfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44

55
docker pull bfren/alpine
66

7-
BASE_REVISION="2.1.6"
7+
BASE_REVISION="2.1.7"
88
echo "Base: ${BASE_REVISION}"
99

1010
PHP_VERSIONS="5.6 7.4 8.0"

0 commit comments

Comments
 (0)