diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-07-10 14:51:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-10 13:51:55 +0000 |
commit | 8b34c4d75b3f9ae27380e30c7d192fe55e40196b (patch) | |
tree | 37702478197ea787c9800a4e49fa6465e2692531 /.github/workflows/ci.generate.ts | |
parent | 82f9216610ec9cc32697ca77cb95da4b229117d4 (diff) |
fix: memory leak when transpiling (#24490)
This commit fixes memory leak described in
https://github.com/denoland/deno/issues/24380.
This is done by upgrading following crates:
- deno_ast
- deno_graph
- eszip
- dprint-plugin-typescript
- deno_lint
- deno_doc
- deno_emit
Diffstat (limited to '.github/workflows/ci.generate.ts')
-rwxr-xr-x | .github/workflows/ci.generate.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.generate.ts b/.github/workflows/ci.generate.ts index 9806e5866..a22e15eba 100755 --- a/.github/workflows/ci.generate.ts +++ b/.github/workflows/ci.generate.ts @@ -5,7 +5,7 @@ import { stringify } from "jsr:@std/yaml@^0.221/stringify"; // Bump this number when you want to purge the cache. // Note: the tools/release/01_bump_crate_versions.ts script will update this version // automatically via regex, so ensure that this line maintains this format. -const cacheVersion = 3; +const cacheVersion = 4; const ubuntuX86Runner = "ubuntu-22.04"; const ubuntuX86XlRunner = "ubuntu-22.04-xl"; |