Reduce bundle size

Replace @actions/core with local functions

@actions/core is unmaintained and poorly designed for projects that just need basic functions
This commit is contained in:
Shivam Mathur
2026-01-20 07:47:23 +05:30
parent 871ff01b2b
commit 109ae4d1c0
8 changed files with 334 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
import fs from 'fs';
import * as path from 'path';
import * as core from '@actions/core';
import * as core from './core';
import * as fetch from './fetch';
/**