From 17effbfd5a531550a140889db6ec5d4747dc600b Mon Sep 17 00:00:00 2001 From: Michael Kriese Date: Thu, 27 Jun 2024 14:32:33 +0200 Subject: [PATCH] refactor: use named import --- src/utils/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/github.ts b/src/utils/github.ts index c74972731..f2796c124 100644 --- a/src/utils/github.ts +++ b/src/utils/github.ts @@ -3,7 +3,7 @@ import { setTimeout } from 'node:timers/promises'; import { context, getOctokit } from '@actions/github'; import type { GitHub } from '@actions/github/lib/utils'; -import got from 'got'; +import { got } from 'got'; import { readBuffer, writeFile } from '../util'; import { getBinaryName } from './config'; import log from './logger';