Skip to content

Commit

Permalink
Add PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
inverse committed Nov 27, 2023
1 parent f94b3c3 commit febc761
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@master
with:
php-version: '8.2'
php-version: '8.3'
- name: Install dependencies
run: composer install
- name: Run tests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.2', '8.1', '8.0']
php-version: ['8.3', '8.2', '8.1', '8.0']
steps:
- uses: actions/checkout@v4
- name: Install PHP
Expand All @@ -19,7 +19,7 @@ jobs:
run: |
XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover coverage.xml
- uses: codecov/codecov-action@v3
if: matrix.php-version == '8.2'
if: matrix.php-version == '8.3'
with:
token: ${{ secrets.CODECOV_TOKEN }}
phpstan:
Expand All @@ -35,7 +35,7 @@ jobs:
php-cs-fixer:
runs-on: ubuntu-latest
container:
image: jakzal/phpqa:php8.1
image: jakzal/phpqa:php8.3
steps:
- uses: actions/checkout@v4
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COPY composer.json /app

RUN composer install --no-dev --optimize-autoloader

FROM php:8.2-alpine
FROM php:8.3-alpine

COPY . /app

Expand Down

0 comments on commit febc761

Please sign in to comment.