Skip to content

Commit

Permalink
style: reorder imports
Browse files Browse the repository at this point in the history
  • Loading branch information
nhedger committed Sep 19, 2023
1 parent 886b901 commit e64eee7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { getInput } from "./helpers";
import { setup } from "./setup";
import { getInput as coreGetInput } from "@actions/core";
import { createActionAuth } from "@octokit/auth-action";
import { Octokit } from "@octokit/rest";
import { getInput } from "./helpers";
import { setup } from "./setup";

(async () => {
await setup({
Expand Down
2 changes: 1 addition & 1 deletion src/setup.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { join } from "path";
import { addPath, exportVariable, info, setFailed } from "@actions/core";
import { downloadTool, extractTar, extractZip } from "@actions/tool-cache";
import { RequestError } from "@octokit/request-error";
import { Octokit } from "@octokit/rest";
import { stat, symlink, writeFile } from "fs/promises";
import { join } from "path";

/**
* Exoscale Setup Options
Expand Down

0 comments on commit e64eee7

Please sign in to comment.