Skip to content

Commit a1ff1c1

Browse files
authored
v2.1.7 (#32)
Minor updates * Using latest base images Build updates * Using PAT instead of default token * Renaming publish workflows
1 parent 1f1f210 commit a1ff1c1

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

.github/workflows/auto-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ on:
66
jobs:
77
create-pr:
88
runs-on: ubuntu-latest
9+
if: ${{ github.ref_type == 'branch' }}
910
steps:
1011
-
11-
if: github.ref_type == 'branch'
1212
name: Checkout Branch ${{ github.ref_name }}
1313
uses: actions/checkout@v3
1414
-
1515
name: Create Pull Request
1616
uses: bfren/pull-request@v2
1717
with:
18-
github_token: ${{ secrets.GITHUB_TOKEN }}
18+
github_token: ${{ secrets.PAT }}
1919
destination_branch: main
2020
pr_title: ${{ github.ref_name }}
2121
pr_body: "Merging branch to create ${{ github.ref_name }}."

.github/workflows/auto-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ jobs:
1717
name: Create Release ${{ env.PR_TITLE }}
1818
uses: bfren/action-gh-release@v1
1919
with:
20+
token: ${{ secrets.PAT }}
2021
name: ${{ env.PR_TITLE }}
2122
tag_name: ${{ env.PR_TITLE }}

.github/workflows/main-5_6.yml renamed to .github/workflows/publish-5_6.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: main-5_6
1+
name: publish-5_6
22

33
on:
44
release:

.github/workflows/main-7_4.yml renamed to .github/workflows/publish-7_4.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: main-7_4
1+
name: publish-7_4
22

33
on:
44
release:

.github/workflows/main-8_0.yml renamed to .github/workflows/publish-8_0.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: main-8_0
1+
name: publish-8_0
22

33
on:
44
release:

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.4
1+
FROM bfren/apache:apache2.4.4x-2.1.6
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.4
1+
FROM bfren/apache:apache2.4.5x-2.1.6
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.4
1+
FROM bfren/apache:apache2.4.5x-2.1.6
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.6
1+
2.1.7

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.4"
7+
BASE_REVISION="2.1.6"
88
echo "Base: ${BASE_REVISION}"
99

1010
PHP_VERSIONS="5.6 7.4 8.0"

0 commit comments

Comments
 (0)