From 95b3627cf9c5f96589295f3186625f41842ff364 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oskar=20W=C3=B3jcikiewicz?= Date: Sun, 10 Mar 2024 11:19:06 +0100 Subject: [PATCH] fix(config): parsing env --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 5f71045..d61bfaa 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,6 +1,6 @@ import * as core from '@actions/core' import * as fs from 'fs' -import parseEnv from 'parse-env-string' +import * as parseEnv from 'parse-env-string' const input = (input: string, required: boolean = false) => { return core.getInput(input, { required })