Skip to content

Commit

Permalink
Removes PHP 8.0 from GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-janu committed Apr 24, 2023
1 parent 9b11636 commit 3f3bdcd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_style.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
php: [ '8.0' ]
php: [ '8.1' ]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
id: "extcache"
uses: "shivammathur/cache-extensions@v1"
with:
php-version: "8.0"
php-version: "8.1"
extensions: "pcov"
key: "v1"

Expand All @@ -35,7 +35,7 @@ jobs:
- name: Setup PHP with PCOV
uses: shivammathur/setup-php@v2
with:
php-version: "8.0"
php-version: "8.1"
coverage: "pcov"

- name: "Setup problem matchers for PHP"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.0', '8.1', '8.2' ]
php: [ '8.1', '8.2' ]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static_analysis.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.0', '8.1', '8.2' ]
php: [ '8.1', '8.2' ]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 3f3bdcd

Please sign in to comment.