Move cache.ts to features/ directory.

This commit is contained in:
Fabio Niephaus 2022-11-03 17:16:53 +01:00
parent cb02f04137
commit f1c2f56b3e
No known key found for this signature in database
GPG Key ID: F21CF5275F31DFD6
4 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@
import {mkdtempSync} from 'fs'
import {tmpdir} from 'os'
import {join} from 'path'
import {restore, save} from '../src/cache'
import {restore, save} from '../src/features/cache'
import * as fs from 'fs'
import * as os from 'os'
import * as core from '@actions/core'

View File

@ -26,7 +26,7 @@
import * as core from '@actions/core'
import * as constants from './constants'
import {save} from './cache'
import {save} from './features/cache'
import {generateReports} from './features/reports'
/**

View File

@ -3,7 +3,7 @@ import * as core from '@actions/core'
import * as graalvm from './graalvm'
import {isFeatureAvailable as isCacheAvailable} from '@actions/cache'
import {join} from 'path'
import {restore} from './cache'
import {restore} from './features/cache'
import {setUpDependencies} from './dependencies'
import {setUpGUComponents} from './gu'
import {setUpMandrel} from './mandrel'