Skip to content

Commit 8a7be19

Browse files
committed
use roave directly as the docker action is broken
1 parent fe30ba3 commit 8a7be19

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.github/workflows/checks.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,20 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- name: Permissions
16-
run: git config --global --add safe.directory /github/workspace
1715

1816
- name: Checkout code
19-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 0
20+
21+
- name: Install PHP with extensions.
22+
uses: shivammathur/setup-php@v2
23+
with:
24+
php-version: "8.2"
25+
26+
- name: Install roave/backward-compatibility-check.
27+
run: composer require --no-update psr/http-factory && composer require --dev roave/backward-compatibility-check
28+
29+
- name: Run roave/backward-compatibility-check.
30+
run: vendor/bin/roave-backward-compatibility-check
2031

21-
- name: Roave BC Check
22-
uses: "docker://nyholm/roave-bc-check-ga"

0 commit comments

Comments
 (0)