|
9 | 9 | name: Static analysis
|
10 | 10 | runs-on: ubuntu-latest
|
11 | 11 | steps:
|
12 |
| - - uses: actions/checkout@v2 |
| 12 | + - uses: actions/checkout@v4 |
13 | 13 |
|
14 |
| - - uses: technote-space/get-diff-action@v4 |
| 14 | + - uses: technote-space/get-diff-action@v6 |
15 | 15 | with:
|
16 | 16 | PATTERNS: |
|
17 | 17 | pkg/**/*.php
|
|
25 | 25 |
|
26 | 26 | - run: php ./bin/fix-symfony-version.php "5.4.*"
|
27 | 27 |
|
28 |
| - - uses: "ramsey/composer-install@v1" |
| 28 | + - uses: ramsey/composer-install@3 |
29 | 29 |
|
30 | 30 | - run: sed -i 's/525568/16777471/' vendor/kwn/php-rdkafka-stubs/stubs/constants.php
|
31 | 31 |
|
|
37 | 37 | name: Code style check
|
38 | 38 | runs-on: ubuntu-latest
|
39 | 39 | steps:
|
40 |
| - - uses: actions/checkout@v2 |
| 40 | + - uses: actions/checkout@v4 |
41 | 41 |
|
42 |
| - - uses: technote-space/get-diff-action@v4 |
| 42 | + - uses: technote-space/get-diff-action@v6 |
43 | 43 | with:
|
44 | 44 | PATTERNS: |
|
45 | 45 | pkg/**/*.php
|
@@ -93,14 +93,14 @@ jobs:
|
93 | 93 | name: PHP ${{ matrix.php }} unit tests on Sf ${{ matrix.symfony_version }}, deps=${{ matrix.dependencies }}
|
94 | 94 |
|
95 | 95 | steps:
|
96 |
| - - uses: actions/checkout@v2 |
| 96 | + - uses: actions/checkout@v4 |
97 | 97 |
|
98 | 98 | - name: Get Composer Cache Directory
|
99 | 99 | id: composer-cache
|
100 | 100 | run: |
|
101 | 101 | echo "::set-output name=dir::$(composer config cache-files-dir)"
|
102 | 102 |
|
103 |
| - - uses: actions/cache@v2 |
| 103 | + - uses: actions/cache@v4 |
104 | 104 | with:
|
105 | 105 | path: ${{ steps.composer-cache.outputs.dir }}
|
106 | 106 | key: composer-${{ matrix.php }}-${{ matrix.symfony_version }}-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
|
@@ -143,14 +143,14 @@ jobs:
|
143 | 143 | name: PHP ${{ matrix.php }} functional tests on Sf ${{ matrix.symfony_version }}, deps=${{ matrix.dependencies }}
|
144 | 144 |
|
145 | 145 | steps:
|
146 |
| - - uses: actions/checkout@v2 |
| 146 | + - uses: actions/checkout@v4 |
147 | 147 |
|
148 | 148 | - name: Get Composer Cache Directory
|
149 | 149 | id: composer-cache
|
150 | 150 | run: |
|
151 | 151 | echo "::set-output name=dir::$(composer config cache-files-dir)"
|
152 | 152 |
|
153 |
| - - uses: actions/cache@v2 |
| 153 | + - uses: actions/cache@v4 |
154 | 154 | with:
|
155 | 155 | path: ${{ steps.composer-cache.outputs.dir }}
|
156 | 156 | key: composer-${{ matrix.php }}-${{ matrix.symfony_version }}-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
|
|
0 commit comments