Skip to content

Commit 7ceb7d0

Browse files
committed
Update compatibility
1 parent 86941cd commit 7ceb7d0

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.github/ export-ignore
2+
/tests/ export-ignore
3+
/.gitattributes export-ignore
4+
/.gitignore export-ignore

.github/workflows/CI.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php-versions: ['8.1', '8.2', '8.3']
10+
php-versions: ['8.2', '8.3', '8.4']
1111
fail-fast: false
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- uses: shivammathur/setup-php@v2
1515
with:
1616
php-version: ${{ matrix.php-versions }}
@@ -26,7 +26,7 @@ jobs:
2626
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2727

2828
- name: Cache composer dependencies
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: ${{ steps.composercache.outputs.dir }}
3232
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -58,13 +58,13 @@ jobs:
5858
5959
- name: Archive logs
6060
if: ${{ failure() }}
61-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6262
with:
63-
name: logs
63+
name: logs-php-${{ matrix.php-versions }}
6464
path: vendor/endroid/quality/application/var/log
6565

6666
- name: Archive code coverage results
67-
uses: actions/upload-artifact@v3
67+
uses: actions/upload-artifact@v4
6868
with:
69-
name: coverage
69+
name: coverage-php-${{ matrix.php-versions }}
7070
path: tests/coverage

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2023 (c) Jeroen van den Enden
1+
Copyright 2024 (c) Jeroen van den Enden
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^8.1",
15+
"php": "^8.2",
1616
"ext-fileinfo": "*",
1717
"endroid/installer": "^1.3.1",
1818
"twig/twig": "^3.0"

0 commit comments

Comments
 (0)