Skip to content
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylvln committed Jan 18, 2022
1 parent 0c00885 commit f7a9422
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion dist/main/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/post/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/inputs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import core from '@actions/core';
import * as core from '@actions/core';

export interface Inputs {
bucket: string;
Expand Down
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import core from '@actions/core';
import exec from '@actions/exec';
import github from '@actions/github';
import * as core from '@actions/core';
import * as exec from '@actions/exec';
import * as github from '@actions/github';
import { Storage, File, Bucket } from '@google-cloud/storage';
import { withFile as withTemporaryFile } from 'tmp-promise';

Expand Down
8 changes: 4 additions & 4 deletions src/post.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import exec from '@actions/exec';
import github from '@actions/github';
import glob from '@actions/glob';
import * as exec from '@actions/exec';
import * as github from '@actions/github';
import * as glob from '@actions/glob';
import { Storage } from '@google-cloud/storage';
import path from 'path';
import * as path from 'path';
import { withFile as withTemporaryFile } from 'tmp-promise';

import { getInputs } from './inputs';
Expand Down
2 changes: 1 addition & 1 deletion src/state.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import core from '@actions/core';
import * as core from '@actions/core';

export type CacheHitKindState = 'exact' | 'partial' | 'none';

Expand Down

0 comments on commit f7a9422

Please sign in to comment.