Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐳 DOP-0000 bumps SNOOTY_FRONTEND_VERSION on Dockerfile #1033

Merged
merged 1 commit into from
Apr 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ RUN cd ./modules/oas-page-builder \
FROM ubuntu:20.04
ARG WORK_DIRECTORY=/home/docsworker-xlarge
ARG SNOOTY_PARSER_VERSION=0.16.6
ARG SNOOTY_FRONTEND_VERSION=0.16.10
ARG SNOOTY_FRONTEND_VERSION=0.16.11
ARG MUT_VERSION=0.11.2
ARG REDOC_CLI_VERSION=1.2.3
ARG NPM_BASE_64_AUTH

Unchanged files with check annotations Beta

import { ConsoleLogger } from '../../../src/services/logger';
import { CDNCreds } from '../../../src/entities/creds';
export const UpsertEdgeDictionaryItem = async (event: any = {}): Promise<any> => {

Check warning on line 5 in api/controllers/v1/dochub.ts

GitHub Actions / test

Unexpected any. Specify a different type

Check warning on line 5 in api/controllers/v1/dochub.ts

GitHub Actions / test

Unexpected any. Specify a different type
const body = JSON.parse(event.body);
const pair = {
key: body.source,
import { PushEvent } from '@octokit/webhooks-types';
async function prepGithubPushPayload(
githubEvent: any,

Check warning on line 12 in api/controllers/v1/github.ts

GitHub Actions / test

Unexpected any. Specify a different type
repoBranchesRepository: RepoBranchesRepository,
prefix: string,
repoInfo: ReposBranchesDocsetsDocument
};
}
export const TriggerBuild = async (event: any = {}, context: any = {}): Promise<any> => {

Check warning on line 64 in api/controllers/v1/github.ts

GitHub Actions / test

Unexpected any. Specify a different type

Check warning on line 64 in api/controllers/v1/github.ts

GitHub Actions / test

'context' is assigned a value but never used

Check warning on line 64 in api/controllers/v1/github.ts

GitHub Actions / test

Unexpected any. Specify a different type

Check warning on line 64 in api/controllers/v1/github.ts

GitHub Actions / test

Unexpected any. Specify a different type
const client = new mongodb.MongoClient(c.get('dbUrl'));
await client.connect();
const db = client.db(c.get('dbName'));
import { notifyBuildSummary, snootyBuildComplete } from '../../handlers/jobs';
import { DocsetsRepository } from '../../../src/repositories/docsetsRepository';
export const TriggerLocalBuild = async (event: any = {}, context: any = {}): Promise<any> => {

Check warning on line 16 in api/controllers/v1/jobs.ts

GitHub Actions / test

Unexpected any. Specify a different type

Check warning on line 16 in api/controllers/v1/jobs.ts

GitHub Actions / test

'context' is assigned a value but never used

Check warning on line 16 in api/controllers/v1/jobs.ts

GitHub Actions / test

Unexpected any. Specify a different type
const client = new mongodb.MongoClient(c.get('dbUrl'));
await client.connect();
const db = client.db(c.get('dbName'));