diff --git a/.github/workflows/ci-build-deploy.yaml b/.github/workflows/ci-build-deploy.yaml index 4a98dc5ab..68826a011 100644 --- a/.github/workflows/ci-build-deploy.yaml +++ b/.github/workflows/ci-build-deploy.yaml @@ -54,7 +54,7 @@ jobs: username: ${{ env.REGISTRY_USERNAME }} password: ${{ env.REGISTRY_PASSWORD }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/ci-build-feeders.yaml b/.github/workflows/ci-build-feeders.yaml index b8bfb3e0b..4dd0bde0f 100644 --- a/.github/workflows/ci-build-feeders.yaml +++ b/.github/workflows/ci-build-feeders.yaml @@ -38,7 +38,7 @@ jobs: username: ${{ env.REGISTRY_USERNAME }} password: ${{ env.REGISTRY_PASSWORD }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/ci-build-only.yaml b/.github/workflows/ci-build-only.yaml index 447280735..7bf8da16f 100644 --- a/.github/workflows/ci-build-only.yaml +++ b/.github/workflows/ci-build-only.yaml @@ -46,7 +46,7 @@ jobs: username: ${{ env.REGISTRY_USERNAME }} password: ${{ env.REGISTRY_PASSWORD }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index a11f21e49..e10b636f6 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -44,7 +44,7 @@ jobs: echo "::set-output name=APP_REVISION::${GITHUB_SHA}" id: set-deploy-id - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/src/server.ts b/src/server.ts index f1aff5d28..f1815a867 100644 --- a/src/server.ts +++ b/src/server.ts @@ -289,7 +289,7 @@ const configureExpress = (app: any) => { require('@cypress/code-coverage/middleware/express')(app); } - app.use(express.json()); + app.use(express.json({ limit: '300kb' })); app.use(function errorHandler(err: any, req: any, res: any, next: any) { if (err instanceof SyntaxError) {