mirror of
https://github.com/github/codeql-action.git
synced 2026-04-26 16:58:47 +00:00
Make entries in new mapping mandatory
This commit is contained in:
+3
-1
@@ -236,14 +236,16 @@ const LANGUAGE_TO_REGISTRY_TYPE: RegistryMapping = {
|
||||
go: ["goproxy_server", "git_source"],
|
||||
} as const;
|
||||
|
||||
const NEW_LANGUAGE_TO_REGISTRY_TYPE: RegistryMapping = {
|
||||
const NEW_LANGUAGE_TO_REGISTRY_TYPE: Required<RegistryMapping> = {
|
||||
actions: [],
|
||||
cpp: [],
|
||||
java: ["maven_repository"],
|
||||
csharp: ["nuget_feed"],
|
||||
javascript: [],
|
||||
python: [],
|
||||
ruby: [],
|
||||
rust: [],
|
||||
swift: [],
|
||||
go: ["goproxy_server", "git_source"],
|
||||
} as const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user