Skip to content

Commit d883719

Browse files
committed
📦 Update Deno dependencies
Update dependencies by udd: /home/runner/work/askpass.vim/askpass.vim/denops/askpass/main.ts [1/7] Looking for releases: https://deno.land/x/[email protected]/mod.ts [1/7] Attempting update: https://deno.land/x/[email protected]/mod.ts -> v3.2.0 [1/7] Update successful: https://deno.land/x/[email protected]/mod.ts -> v3.2.0 [2/7] Looking for releases: https://deno.land/[email protected]/path/mod.ts [2/7] Attempting update: https://deno.land/[email protected]/path/mod.ts -> 0.132.0 [2/7] Update successful: https://deno.land/[email protected]/path/mod.ts -> 0.132.0 [3/7] Looking for releases: https://deno.land/x/[email protected]/batch/mod.ts [3/7] Attempting update: https://deno.land/x/[email protected]/batch/mod.ts -> v3.2.0 [3/7] Update successful: https://deno.land/x/[email protected]/batch/mod.ts -> v3.2.0 [4/7] Looking for releases: https://deno.land/x/[email protected]/variable/mod.ts [4/7] Attempting update: https://deno.land/x/[email protected]/variable/mod.ts -> v3.2.0 [4/7] Update successful: https://deno.land/x/[email protected]/variable/mod.ts -> v3.2.0 [5/7] Looking for releases: https://deno.land/x/[email protected]/function/mod.ts [5/7] Attempting update: https://deno.land/x/[email protected]/function/mod.ts -> v3.2.0 [5/7] Update successful: https://deno.land/x/[email protected]/function/mod.ts -> v3.2.0 [6/7] Looking for releases: https://deno.land/x/[email protected]/mod.ts [6/7] Using latest: https://deno.land/x/[email protected]/mod.ts [7/7] Looking for releases: https://deno.land/x/[email protected]/mod.ts [7/7] Attempting update: https://deno.land/x/[email protected]/mod.ts -> v3.1.5 [7/7] Update successful: https://deno.land/x/[email protected]/mod.ts -> v3.1.5 /home/runner/work/askpass.vim/askpass.vim/denops/askpass/const.ts /home/runner/work/askpass.vim/askpass.vim/denops/askpass/cli.ts [1/2] Looking for releases: https://deno.land/x/[email protected]/mod.ts [1/2] Attempting update: https://deno.land/x/[email protected]/mod.ts -> v3.1.5 [1/2] Update successful: https://deno.land/x/[email protected]/mod.ts -> v3.1.5 [2/2] Looking for releases: https://deno.land/[email protected]/io/mod.ts [2/2] Attempting update: https://deno.land/[email protected]/io/mod.ts -> 0.132.0 [2/2] Update successful: https://deno.land/[email protected]/io/mod.ts -> 0.132.0 /home/runner/work/askpass.vim/askpass.vim/README.md Already latest version: https://deno.land/x/[email protected]/mod.ts == v2.0.0 Successfully updated: https://deno.land/x/[email protected]/mod.ts v3.1.4 -> v3.2.0 https://deno.land/[email protected]/path/mod.ts 0.128.0 -> 0.132.0 https://deno.land/x/[email protected]/batch/mod.ts v3.1.4 -> v3.2.0 https://deno.land/x/[email protected]/variable/mod.ts v3.1.4 -> v3.2.0 https://deno.land/x/[email protected]/function/mod.ts v3.1.4 -> v3.2.0 https://deno.land/x/[email protected]/mod.ts v3.1.4 -> v3.1.5 https://deno.land/x/[email protected]/mod.ts v3.1.4 -> v3.1.5 https://deno.land/[email protected]/io/mod.ts 0.128.0 -> 0.132.0 make[1]: Entering directory '/home/runner/work/askpass.vim/askpass.vim' make[1]: Leaving directory '/home/runner/work/askpass.vim/askpass.vim'
1 parent aa977b0 commit d883719

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

denops/askpass/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S deno run --no-check --allow-env=ASKPASS_ADDRESS --allow-net=127.0.0.1
2-
import { Session } from "https://deno.land/x/[email protected].4/mod.ts";
3-
import { writeAll } from "https://deno.land/std@0.128.0/io/mod.ts";
2+
import { Session } from "https://deno.land/x/[email protected].5/mod.ts";
3+
import { writeAll } from "https://deno.land/std@0.132.0/io/mod.ts";
44
import { ASKPASS_ADDRESS } from "./const.ts";
55

66
const addr = Deno.env.get(ASKPASS_ADDRESS);

denops/askpass/main.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import type { Denops } from "https://deno.land/x/denops_std@v3.1.4/mod.ts";
2-
import * as path from "https://deno.land/std@0.128.0/path/mod.ts";
3-
import * as batch from "https://deno.land/x/denops_std@v3.1.4/batch/mod.ts";
4-
import * as vars from "https://deno.land/x/denops_std@v3.1.4/variable/mod.ts";
5-
import * as fn from "https://deno.land/x/denops_std@v3.1.4/function/mod.ts";
1+
import type { Denops } from "https://deno.land/x/denops_std@v3.2.0/mod.ts";
2+
import * as path from "https://deno.land/std@0.132.0/path/mod.ts";
3+
import * as batch from "https://deno.land/x/denops_std@v3.2.0/batch/mod.ts";
4+
import * as vars from "https://deno.land/x/denops_std@v3.2.0/variable/mod.ts";
5+
import * as fn from "https://deno.land/x/denops_std@v3.2.0/function/mod.ts";
66
import * as unknownutil from "https://deno.land/x/[email protected]/mod.ts";
7-
import { Session } from "https://deno.land/x/[email protected].4/mod.ts";
7+
import { Session } from "https://deno.land/x/[email protected].5/mod.ts";
88
import { ASKPASS_ADDRESS } from "./const.ts";
99

1010
export async function main(denops: Denops): Promise<void> {

0 commit comments

Comments
 (0)