Skip to content

Commit 01c2df4

Browse files
committed
Sort imports
1 parent 2b25ecd commit 01c2df4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
import Core from "@actions/core";
2-
import ToolCache from "@actions/tool-cache";
31
import Cache from "@actions/cache";
4-
import IO from "@actions/io";
2+
import ChildProcess from "child_process";
3+
import Core from "@actions/core";
4+
import {promises as FS} from "fs";
55
import Glob from "@actions/glob";
6+
import IO from "@actions/io";
67
import {Octokit} from "@octokit/rest";
7-
import fetch from "node-fetch";
88
import Path from "path";
9-
import ChildProcess from "child_process";
10-
import Util from "util";
9+
import ToolCache from "@actions/tool-cache";
1110
import URL from "url";
12-
import {promises as FS} from "fs";
13-
11+
import Util from "util";
1412
import {cmpTags} from "tag-cmp";
13+
import fetch from "node-fetch";
14+
1515
const execFile = Util.promisify(ChildProcess.execFile);
1616

1717
async function run() {

0 commit comments

Comments
 (0)