|
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@v3" |
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 |
|
49 | 49 | run: | |
50 | 50 | echo "::set-output name=dir::$(composer config cache-files-dir)" |
51 | 51 |
|
52 | | - - uses: actions/cache@v2 |
| 52 | + - uses: actions/cache@v4 |
53 | 53 | with: |
54 | 54 | path: ${{ steps.composer-cache.outputs.dir }} |
55 | 55 | key: composer-cs-check-${{ hashFiles('**/composer.json') }} |
@@ -87,14 +87,14 @@ jobs: |
87 | 87 | name: PHP ${{ matrix.php }} unit tests on Sf ${{ matrix.symfony_version }}, deps=${{ matrix.dependencies }} |
88 | 88 |
|
89 | 89 | steps: |
90 | | - - uses: actions/checkout@v2 |
| 90 | + - uses: actions/checkout@v4 |
91 | 91 |
|
92 | 92 | - name: Get Composer Cache Directory |
93 | 93 | id: composer-cache |
94 | 94 | run: | |
95 | 95 | echo "::set-output name=dir::$(composer config cache-files-dir)" |
96 | 96 |
|
97 | | - - uses: actions/cache@v2 |
| 97 | + - uses: actions/cache@v4 |
98 | 98 | with: |
99 | 99 | path: ${{ steps.composer-cache.outputs.dir }} |
100 | 100 | key: composer-${{ matrix.php }}-${{ matrix.symfony_version }}-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }} |
@@ -131,14 +131,14 @@ jobs: |
131 | 131 | name: PHP ${{ matrix.php }} functional tests on Sf ${{ matrix.symfony_version }}, deps=${{ matrix.dependencies }} |
132 | 132 |
|
133 | 133 | steps: |
134 | | - - uses: actions/checkout@v2 |
| 134 | + - uses: actions/checkout@v4 |
135 | 135 |
|
136 | 136 | - name: Get Composer Cache Directory |
137 | 137 | id: composer-cache |
138 | 138 | run: | |
139 | 139 | echo "::set-output name=dir::$(composer config cache-files-dir)" |
140 | 140 |
|
141 | | - - uses: actions/cache@v2 |
| 141 | + - uses: actions/cache@v4 |
142 | 142 | with: |
143 | 143 | path: ${{ steps.composer-cache.outputs.dir }} |
144 | 144 | key: composer-${{ matrix.php }}-${{ matrix.symfony_version }}-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }} |
|
0 commit comments