Skip to content

Commit f55fe9c

Browse files
committed
[CI] Tweak "Validate packages" job for PHP 8.2
1 parent 332698f commit f55fe9c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/code-quality.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ jobs:
5555
fi
5656
done
5757
58-
- name: Check all composer.json have dependency to "php" >=8.1
58+
- name: Check all composer.json have dependency to "php" >=8.2
5959
if: always()
6060
run: |
6161
for file in $(find src/ -mindepth 2 -type f -name composer.json); do
62-
if ! jq -e '.require.php | test(">=8.1")' "$file" > /dev/null; then
63-
echo "File $file does not have the dependency 'php' >=8.1 in its composer.json";
62+
if ! jq -e '.require.php | test(">=8.2")' "$file" > /dev/null; then
63+
echo "File $file does not have the dependency 'php' >=8.2 in its composer.json";
6464
exit 1;
6565
fi
6666
done

0 commit comments

Comments
 (0)