Skip to content

Commit

Permalink
Merge pull request #1 from ArlonHelps/feature/php-8.3-and-update-depe…
Browse files Browse the repository at this point in the history
…ndencies

Feature: Update to PHP 8.3 and add dependabot
  • Loading branch information
ArlonAntonius authored Feb 7, 2024
2 parents bea8ccb + dcecd6e commit eb0b193
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
labels:
- "dependencies"
- "bot"
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
version: ${{ steps.version.outputs.version }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -27,23 +27,23 @@ jobs:

strategy:
matrix:
version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
version: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']

name: 'Docker Image PHP Release ${{ matrix.version }}'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -52,7 +52,7 @@ jobs:
run: echo "Building Images for PHP ${{ matrix.version }}"

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
push: true
context: .dev/Docker/Images/PHP
Expand All @@ -74,18 +74,18 @@ jobs:
name: 'Docker Image MySQL Release ${{ matrix.version }}'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
Expand All @@ -94,7 +94,7 @@ jobs:
run: echo "Building Images for MySQL ${{ matrix.version }}"

- name: Build and push
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
push: true
context: .dev/Docker/Images/MySQL
Expand Down

0 comments on commit eb0b193

Please sign in to comment.