|
75 | 75 |
|
76 | 76 | name: Test suite |
77 | 77 | runs-on: ubuntu-latest |
78 | | - if: ${{ !contains(github.event.head_commit.message, 'chore(') }} |
79 | 78 | env: |
80 | 79 | EXTENSION_PATH: "my-code/crowdsec-bouncer-lib" |
81 | 80 | REMEDIATION_ENGINE_PATH: "my-code/php-remediation-engine" |
@@ -171,41 +170,41 @@ jobs: |
171 | 170 |
|
172 | 171 | - name: Clone bouncer lib files |
173 | 172 | if: inputs.is_call != true |
174 | | - uses: actions/checkout@v4 |
| 173 | + uses: actions/checkout@v5 |
175 | 174 | with: |
176 | 175 | path: ${{env.EXTENSION_PATH}} |
177 | 176 |
|
178 | 177 | - name: Clone bouncer lib files |
179 | 178 | if: inputs.is_call == true |
180 | | - uses: actions/checkout@v4 |
| 179 | + uses: actions/checkout@v5 |
181 | 180 | with: |
182 | 181 | repository: ${{ env.BOUNCER_LIB_REPO }} |
183 | 182 | path: ${{env.EXTENSION_PATH}} |
184 | 183 | ref: "main" |
185 | 184 |
|
186 | 185 | - name: Clone PHP common files |
187 | | - uses: actions/checkout@v4 |
| 186 | + uses: actions/checkout@v5 |
188 | 187 | with: |
189 | 188 | repository: ${{ steps.set-common-data.outputs.repo}} |
190 | 189 | ref: ${{ steps.set-common-data.outputs.branch }} |
191 | 190 | path: ${{env.PHP_COMMON_PATH}} |
192 | 191 |
|
193 | 192 | - name: Clone LAPI client |
194 | | - uses: actions/checkout@v4 |
| 193 | + uses: actions/checkout@v5 |
195 | 194 | with: |
196 | 195 | repository: ${{ steps.set-lapi-client-data.outputs.repo }} |
197 | 196 | ref: ${{ steps.set-lapi-client-data.outputs.branch }} |
198 | 197 | path: ${{env.LAPI_CLIENT_PATH}} |
199 | 198 |
|
200 | 199 | - name: Clone CAPI client |
201 | | - uses: actions/checkout@v4 |
| 200 | + uses: actions/checkout@v5 |
202 | 201 | with: |
203 | 202 | repository: ${{ steps.set-capi-client-data.outputs.repo }} |
204 | 203 | ref: ${{ steps.set-capi-client-data.outputs.branch }} |
205 | 204 | path: ${{env.CAPI_CLIENT_PATH}} |
206 | 205 |
|
207 | 206 | - name: Clone PHP remediation engine |
208 | | - uses: actions/checkout@v4 |
| 207 | + uses: actions/checkout@v5 |
209 | 208 | with: |
210 | 209 | repository: ${{ steps.set-remediation-engine-data.outputs.repo }} |
211 | 210 | ref: ${{ steps.set-remediation-engine-data.outputs.branch }} |
|
0 commit comments