File tree Expand file tree Collapse file tree 7 files changed +28
-18
lines changed Expand file tree Collapse file tree 7 files changed +28
-18
lines changed Original file line number Diff line number Diff line change 71
71
-
72
72
name : Run PHPStan
73
73
run : docker compose exec -T php vendor/bin/phpstan --memory-limit=256M
74
+ -
75
+ name : Check OpenAPI
76
+ run : docker compose exec -T php bin/console api:openapi:export --yaml | docker run --rm -i -v $(pwd)/redocly.yaml:/spec/redocly.yaml redocly/cli lint /dev/stdin
74
77
75
78
# run e2e tests iso-prod
76
79
e2e-tests :
@@ -129,18 +132,18 @@ jobs:
129
132
-
130
133
name : Cache Playwright Binaries
131
134
id : playwright-cache
132
- uses : actions/cache@v3
135
+ uses : actions/cache@v4
133
136
with :
134
137
path : ~/.cache/ms-playwright
135
138
key : ${{ runner.os }}-playwright
136
139
-
137
140
name : Install PNPM
138
141
uses : pnpm/action-setup@v2
139
142
with :
140
- version : 8
143
+ version : latest
141
144
-
142
145
name : Cache PNPM
143
- uses : actions/cache@v3
146
+ uses : actions/cache@v4
144
147
with :
145
148
path : ${{ env.PNPM_HOME }}
146
149
key : ${{ runner.os }}-pnpm-${{ github.run_id }}
@@ -197,7 +200,7 @@ jobs:
197
200
# Lint API
198
201
-
199
202
name : PHP CS Fixer Cache
200
- uses : actions/cache@v3
203
+ uses : actions/cache@v4
201
204
with :
202
205
path : api/.php-cs-fixer.cache
203
206
key : ${{ runner.OS }}-phpcsfixer-${{ github.sha }}
@@ -227,10 +230,10 @@ jobs:
227
230
name : Install PNPM
228
231
uses : pnpm/action-setup@v2
229
232
with :
230
- version : 8
233
+ version : latest
231
234
-
232
235
name : Cache PNPM
233
- uses : actions/cache@v3
236
+ uses : actions/cache@v4
234
237
with :
235
238
path : ${{ env.PNPM_HOME }}
236
239
key : ${{ runner.os }}-pnpm-${{ github.run_id }}
@@ -248,7 +251,7 @@ jobs:
248
251
# Lint HELM
249
252
-
250
253
name : Cache Helm Dependencies
251
- uses : actions/cache@v3
254
+ uses : actions/cache@v4
252
255
with :
253
256
path : helm/api-platform/charts/
254
257
key : ${{ runner.os }}-helm-dependencies-${{ github.run_id }}
Original file line number Diff line number Diff line change 70
70
gcloud container clusters get-credentials ${{ inputs.gke-cluster }} --zone ${{ inputs.gke-zone }}
71
71
-
72
72
name : Cache Helm Dependencies
73
- uses : actions/cache@v3
73
+ uses : actions/cache@v4
74
74
with :
75
75
path : helm/api-platform/charts/
76
76
key : ${{ runner.os }}-helm-dependencies-${{ github.run_id }}
Original file line number Diff line number Diff line change 61
61
run : docker pull europe-west1-docker.pkg.dev/${{ secrets.GKE_PROJECT }}/${{ secrets.GKE_PROJECT }}/${{ matrix.image }}:latest
62
62
-
63
63
name : Cache Trivy
64
- uses : actions/cache@v3
64
+ uses : actions/cache@v4
65
65
with :
66
66
path : .trivy
67
67
key : ${{ runner.os }}-trivy-${{ github.run_id }}
Original file line number Diff line number Diff line change 1
1
api_platform :
2
2
title : API Platform's demo
3
- version : 3.2.12
3
+ version : 3.2.13
4
4
description : |
5
5
This is a demo application of the [API Platform](https://api-platform.com) framework.
6
6
[Its source code](https://github.com/api-platform/demo) includes various examples, check it out!
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ type: application
17
17
# This is the chart version. This version number should be incremented each time you make changes
18
18
# to the chart and its templates, including the app version.
19
19
# Versions are expected to follow Semantic Versioning (https://semver.org/)
20
- version : 3.2.12
20
+ version : 3.2.13
21
21
22
22
# This is the version number of the application being deployed. This version number should be
23
23
# incremented each time you make changes to the application. Versions are not expected to
24
24
# follow Semantic Versioning. They should reflect the version the application is using.
25
- appVersion : 3.2.12
25
+ appVersion : 3.2.13
26
26
27
27
dependencies :
28
28
- name : postgresql
Original file line number Diff line number Diff line change
1
+ # See https://redocly.com/docs/cli/configuration/rules/ for more information.
2
+ extends :
3
+ - recommended
4
+
5
+ rules :
6
+ info-license : off
7
+ operation-4xx-response : off
You can’t perform that action at this time.
0 commit comments