File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 27
27
- highest
28
28
steps :
29
29
- name : Checkout
30
- uses : actions/checkout@v2
30
+ uses : actions/checkout@v4
31
31
32
32
- name : Override PHP ini values for JIT compiler
33
33
if : matrix.compiler == 'jit'
46
46
run : echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
47
47
48
48
- name : Cache dependencies installed with composer
49
- uses : actions/cache@v1
49
+ uses : actions/cache@v4
50
50
with :
51
51
path : ${{ env.COMPOSER_CACHE_DIR }}
52
52
key : php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
@@ -65,14 +65,14 @@ jobs:
65
65
run : php -i; php -m
66
66
67
67
- name : Start Redis
68
- uses : supercharge/redis-github-action@1.4 .0
68
+ uses : supercharge/redis-github-action@1.8 .0
69
69
with :
70
70
redis-version : ${{ matrix.redis-version }}
71
71
72
72
- name : Run tests with phpunit
73
73
run : vendor/bin/phpunit --coverage-clover=coverage.xml
74
74
75
75
- name : Send code coverage report to Codecov.io
76
- uses : codecov/codecov-action@v1
76
+ uses : codecov/codecov-action@v5
77
77
with :
78
78
token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments