|
11 | 11 | - cron: "0 17 * * *"
|
12 | 12 |
|
13 | 13 | jobs:
|
14 |
| - coding-standards: |
15 |
| - name: "Coding Standards" |
16 |
| - |
17 |
| - runs-on: "ubuntu-22.04" |
18 |
| - |
19 |
| - strategy: |
20 |
| - matrix: |
21 |
| - php-version: |
22 |
| - - "7.4" |
23 |
| - |
24 |
| - steps: |
25 |
| - - name: "Checkout" |
26 |
| - uses: "actions/checkout@v4" |
27 |
| - |
28 |
| - - name: "Install PHP" |
29 |
| - uses: "shivammathur/setup-php@v2" |
30 |
| - with: |
31 |
| - coverage: "none" |
32 |
| - php-version: "${{ matrix.php-version }}" |
33 |
| - |
34 |
| - - name: "Cache dependencies installed with composer" |
35 |
| - uses: "actions/cache@v4" |
36 |
| - with: |
37 |
| - path: "~/.composer/cache" |
38 |
| - key: "php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.json') }}" |
39 |
| - restore-keys: "php-${{ matrix.php-version }}-composer-" |
40 |
| - |
41 |
| - - name: "Install dependencies with composer" |
42 |
| - run: "composer update --no-interaction --no-progress --no-suggest" |
43 |
| - |
44 |
| - - name: "Run squizlabs/php_codesniffer" |
45 |
| - run: "vendor/bin/phpcs" |
46 |
| - |
47 | 14 | validate-against-schema:
|
48 | 15 | name: "Validate against schema"
|
49 | 16 |
|
|
56 | 23 |
|
57 | 24 | steps:
|
58 | 25 | - name: "Checkout"
|
59 |
| - uses: "actions/checkout@v4" |
| 26 | + uses: "actions/checkout@v5" |
60 | 27 |
|
61 | 28 | - name: "Install PHP"
|
62 | 29 | uses: "shivammathur/setup-php@v2"
|
|
100 | 67 |
|
101 | 68 | steps:
|
102 | 69 | - name: "Checkout"
|
103 |
| - uses: "actions/checkout@v4" |
| 70 | + uses: "actions/checkout@v5" |
104 | 71 |
|
105 | 72 | - name: "Install PHP"
|
106 | 73 | uses: "shivammathur/setup-php@v2"
|
@@ -139,7 +106,7 @@ jobs:
|
139 | 106 |
|
140 | 107 | steps:
|
141 | 108 | - name: "Checkout"
|
142 |
| - uses: "actions/checkout@v4" |
| 109 | + uses: "actions/checkout@v5" |
143 | 110 |
|
144 | 111 | - name: "Install PHP"
|
145 | 112 | uses: "shivammathur/setup-php@v2"
|
|
0 commit comments