Add caching configuration for Go

This commit is contained in:
Michael B. Gale
2024-07-23 12:08:31 +01:00
parent 5e11d57e17
commit 9d1353fe5f
3 changed files with 9 additions and 1 deletions

View File

@@ -45,6 +45,10 @@ const CODEQL_DEFAULT_CACHE_CONFIG: { [language: string]: CacheConfig } = {
"**/packages.lock.json",
],
},
go: {
paths: [join(os.homedir(), "go", "pkg", "mod")],
hash: ["**/go.sum"],
},
};
/**