Skip to content

Commit 60954be

Browse files
committed
wip
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 9899dba commit 60954be

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/tests.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
tests:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-20.04
1212

1313
strategy:
1414
fail-fast: false
@@ -20,14 +20,18 @@ jobs:
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v4
2424

2525
- name: Setup PHP
2626
uses: shivammathur/setup-php@v2
2727
with:
2828
php-version: ${{ matrix.php }}
2929
extensions: dom, curl, libxml, mbstring, zip
3030
coverage: pcov
31+
32+
- name: Remove Security Advisories on obsolete PHP versions
33+
run: composer remove "roave/security-advisories" --dev --no-update
34+
if: matrix.php <= 7.4
3135

3236
- name: Install dependencies
3337
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress

0 commit comments

Comments
 (0)