mirror of
https://github.com/hashicorp/vault-action.git
synced 2025-11-08 07:36:56 +00:00
fix fs import
This commit is contained in:
parent
716f86033e
commit
b33900a34b
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
// @ts-check
|
// @ts-check
|
||||||
import core from '@actions/core';
|
import core from '@actions/core';
|
||||||
import fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import got from 'got';
|
import got from 'got';
|
||||||
import rsasign from 'jsrsasign';
|
import rsasign from 'jsrsasign';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ vi.mock('fs', () => ({
|
||||||
|
|
||||||
import core from '@actions/core';
|
import core from '@actions/core';
|
||||||
import got from 'got'
|
import got from 'got'
|
||||||
import fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import { when } from 'jest-when'
|
import { when } from 'jest-when'
|
||||||
|
|
||||||
import { retrieveToken } from './auth.js';
|
import { retrieveToken } from './auth.js';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue