diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-08-25 17:01:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 17:01:02 -0400 |
commit | 0fe590bbcbf270b50abd8d73db1c5e0be69591f1 (patch) | |
tree | 972b4c56ed0d8338e29562e4c5010b0271824e6d /tools/release | |
parent | e92d7add386546240a4fc1c032a9a6b81834e6bc (diff) |
chore: fix publish for circular dependencies (#15598)
Diffstat (limited to 'tools/release')
-rw-r--r-- | tools/release/deps.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/release/deps.ts b/tools/release/deps.ts index 5c33e6548..63215247f 100644 --- a/tools/release/deps.ts +++ b/tools/release/deps.ts @@ -1,4 +1,4 @@ // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. -export * from "https://raw.githubusercontent.com/denoland/automation/0.12.1/mod.ts"; -export * from "https://raw.githubusercontent.com/denoland/automation/0.12.1/github_actions.ts"; +export * from "https://raw.githubusercontent.com/denoland/automation/0.12.2/mod.ts"; +export * from "https://raw.githubusercontent.com/denoland/automation/0.12.2/github_actions.ts"; |