diff --git a/execute-workflow/index.mts b/execute-workflow/index.mts index 07c0681..1e67b26 100644 --- a/execute-workflow/index.mts +++ b/execute-workflow/index.mts @@ -1,5 +1,5 @@ import type * as Core from '@actions/core'; -import { type context as Context, type getOctokit } from '@actions/github'; +import type { context as Context, getOctokit } from '@actions/github'; import * as PackageJSON from '../package.json' with { type: 'json' }; diff --git a/signed-commit/index.mts b/signed-commit/index.mts index 65e9f1e..61b90e7 100644 --- a/signed-commit/index.mts +++ b/signed-commit/index.mts @@ -3,7 +3,7 @@ import * as childProcess from 'node:child_process'; import * as fs from 'node:fs/promises'; import type * as Core from '@actions/core'; -import { type getOctokit } from '@actions/github'; +import type { getOctokit } from '@actions/github'; type Octokit = ReturnType; diff --git a/wait-for-checks/index.mts b/wait-for-checks/index.mts index 7ea678e..d245003 100644 --- a/wait-for-checks/index.mts +++ b/wait-for-checks/index.mts @@ -1,5 +1,5 @@ import type * as Core from '@actions/core'; -import { type context as Context, type getOctokit } from '@actions/github'; +import type { context as Context, getOctokit } from '@actions/github'; import * as PackageJSON from '../package.json' with { type: 'json' };