Skip to content

Commit 6e84b9e

Browse files
committed
Merge branch '👷-deno-bump' into 🦆
2 parents 5f40ad2 + fd6afd3 commit 6e84b9e

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

‎.github/scripts/install-deno.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Installs a binary distribution of Deno. (The Snapcraft version of Deno seems
44
# unable to locate `cargo`.)
55

6-
version=1.22.3
6+
version=1.32.1
77
wget https://github.com/denoland/deno/releases/download/v${version}/deno-x86_64-unknown-linux-gnu.zip
88
unzip deno-x86_64-unknown-linux-gnu.zip
99
chmod +x deno

‎scripts/check-doc.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
// [Deno]: https://deno.land/
44
//
55
// Usage: deno run --allow-read scripts/check-workspace.ts
6-
import { parse as parseFlags } from "https://deno.land/std@0.143.0/flags/mod.ts";
7-
import { walk } from "https://deno.land/std@0.143.0/fs/mod.ts";
8-
import * as path from "https://deno.land/std@0.143.0/path/mod.ts";
9-
import * as log from "https://deno.land/std@0.143.0/log/mod.ts";
6+
import { parse as parseFlags } from "https://deno.land/std@0.181.0/flags/mod.ts";
7+
import { walk } from "https://deno.land/std@0.181.0/fs/mod.ts";
8+
import * as path from "https://deno.land/std@0.181.0/path/mod.ts";
9+
import * as log from "https://deno.land/std@0.181.0/log/mod.ts";
1010

1111
const parsedArgs = parseFlags(Deno.args, {
1212
"alias": {

‎scripts/check-workspace.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
// [Deno]: https://deno.land/
77
//
88
// Usage: deno run --allow-read scripts/check-workspace.ts
9-
import { parse as parseFlags } from "https://deno.land/std@0.143.0/flags/mod.ts";
10-
import { parse as parseToml } from "https://deno.land/std@0.143.0/encoding/toml.ts";
11-
import * as path from "https://deno.land/std@0.143.0/path/mod.ts";
12-
import * as log from "https://deno.land/std@0.143.0/log/mod.ts";
13-
import { exists } from "https://deno.land/std@0.143.0/fs/exists.ts";
9+
import { parse as parseFlags } from "https://deno.land/std@0.181.0/flags/mod.ts";
10+
import { parse as parseToml } from "https://deno.land/std@0.181.0/encoding/toml.ts";
11+
import * as path from "https://deno.land/std@0.181.0/path/mod.ts";
12+
import * as log from "https://deno.land/std@0.181.0/log/mod.ts";
13+
import { exists } from "https://deno.land/std@0.181.0/fs/exists.ts";
1414

1515
const parsedArgs = parseFlags(Deno.args, {
1616
"alias": {

‎scripts/externalize-non-local-docs.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
// [Deno]: https://deno.land/
55
//
66
// Usage: deno run -A scripts/externalize-non-local-docs.ts
7-
import { parse as parseFlags } from "https://deno.land/std@0.143.0/flags/mod.ts";
8-
import { parse as parseToml } from "https://deno.land/std@0.143.0/encoding/toml.ts";
9-
import * as path from "https://deno.land/std@0.143.0/path/mod.ts";
10-
import * as log from "https://deno.land/std@0.143.0/log/mod.ts";
11-
import { walk } from "https://deno.land/std@0.143.0/fs/walk.ts";
7+
import { parse as parseFlags } from "https://deno.land/std@0.181.0/flags/mod.ts";
8+
import { parse as parseToml } from "https://deno.land/std@0.181.0/encoding/toml.ts";
9+
import * as path from "https://deno.land/std@0.181.0/path/mod.ts";
10+
import * as log from "https://deno.land/std@0.181.0/log/mod.ts";
11+
import { walk } from "https://deno.land/std@0.181.0/fs/walk.ts";
1212
import * as semver from "https://deno.land/x/semver@v1.4.0/mod.ts";
1313

1414
const parsedArgs = parseFlags(Deno.args, {

‎scripts/report-size.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
// program.
33
//
44
// [Deno]: https://deno.land/
5-
import { parse as parseFlags } from "https://deno.land/std@0.143.0/flags/mod.ts";
6-
import * as path from "https://deno.land/std@0.143.0/path/mod.ts";
7-
import * as log from "https://deno.land/std@0.143.0/log/mod.ts";
8-
import { BufReader } from "https://deno.land/std@0.143.0/io/bufio.ts";
9-
import { Buffer } from "https://deno.land/std@0.143.0/node/buffer.ts";
5+
import { parse as parseFlags } from "https://deno.land/std@0.181.0/flags/mod.ts";
6+
import * as path from "https://deno.land/std@0.181.0/path/mod.ts";
7+
import * as log from "https://deno.land/std@0.181.0/log/mod.ts";
8+
import { BufReader } from "https://deno.land/std@0.181.0/io/mod.ts";
9+
import { Buffer } from "node:buffer";
1010
import AsciiTable from "https://deno.land/x/ascii_table@v0.1.0/mod.ts";
11-
import elfy from "https://esm.sh/elfy@1.0.0";
11+
import elfy from "npm:elfy@1.0.0";
1212

1313
const ENV_TEST_NAME = "R3_TEST"; // should be synched with `r3_test_runner`!
1414

0 commit comments

Comments
 (0)