Skip to content

Commit 5356c8b

Browse files
authored
Merge pull request #1256 from bcgov/test
Fix ckan large size
2 parents 68a29a8 + 1f0cb4c commit 5356c8b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci-build-deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
username: ${{ env.REGISTRY_USERNAME }}
5555
password: ${{ env.REGISTRY_PASSWORD }}
5656

57-
- uses: actions/cache@v2
57+
- uses: actions/cache@v3
5858
with:
5959
path: /tmp/.buildx-cache
6060
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/ci-build-feeders.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
username: ${{ env.REGISTRY_USERNAME }}
3939
password: ${{ env.REGISTRY_PASSWORD }}
4040

41-
- uses: actions/cache@v2
41+
- uses: actions/cache@v3
4242
with:
4343
path: /tmp/.buildx-cache
4444
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/ci-build-only.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
username: ${{ env.REGISTRY_USERNAME }}
4747
password: ${{ env.REGISTRY_PASSWORD }}
4848

49-
- uses: actions/cache@v2
49+
- uses: actions/cache@v3
5050
with:
5151
path: /tmp/.buildx-cache
5252
key: ${{ runner.os }}-buildx-${{ github.sha }}

.github/workflows/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
echo "::set-output name=APP_REVISION::${GITHUB_SHA}"
4545
id: set-deploy-id
4646

47-
- uses: actions/cache@v2
47+
- uses: actions/cache@v3
4848
with:
4949
path: /tmp/.buildx-cache
5050
key: ${{ runner.os }}-buildx-${{ github.sha }}

src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ const configureExpress = (app: any) => {
289289
require('@cypress/code-coverage/middleware/express')(app);
290290
}
291291

292-
app.use(express.json());
292+
app.use(express.json({ limit: '300kb' }));
293293

294294
app.use(function errorHandler(err: any, req: any, res: any, next: any) {
295295
if (err instanceof SyntaxError) {

0 commit comments

Comments
 (0)