Skip to content

Commit f3181c7

Browse files
committed
Updated workflow configuration
1 parent bfc4d98 commit f3181c7

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Setup PHP
1313
uses: shivammathur/setup-php@v2
1414
with:
15-
php-version: '8.3'
15+
php-version: '8.4'
1616

1717
- name: Get composer cache directory
1818
id: composer-cache
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup PHP
4242
uses: shivammathur/setup-php@v2
4343
with:
44-
php-version: '8.3'
44+
php-version: '8.4'
4545

4646
- name: Get composer cache directory
4747
id: composer-cache

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
tests:
66
strategy:
77
matrix:
8-
php-versions: [ '8.3', '8.4' ]
8+
php-versions: [ '8.4' ]
99

1010
runs-on: ubuntu-latest
1111

@@ -42,20 +42,20 @@ jobs:
4242
run: sudo /etc/init.d/mysql start
4343

4444
- name: Test
45-
if: matrix.php-versions != '8.3'
45+
if: matrix.php-versions != '8.4'
4646
run: composer test
4747
continue-on-error: true
4848

4949
- name: Test with Coverage
50-
if: matrix.php-versions == '8.3'
50+
if: matrix.php-versions == '8.4'
5151
working-directory: ./
5252
run: |
5353
composer test-coverage
5454
sed -i 's/\/home\/runner\/work\/testutils\/testutils\//\/github\/workspace\//g' report.xml
5555
sed -i 's/\/home\/runner\/work\/testutils\/testutils\//\/github\/workspace\//g' clover.xml
5656
5757
- name: Scan code with SonarCloud
58-
if: matrix.php-versions == '8.3'
58+
if: matrix.php-versions == '8.4'
5959
uses: SonarSource/sonarqube-scan-action@v5
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)