mirror of
https://github.com/actions/cache.git
synced 2025-04-22 12:06:45 +00:00
Fix typo in ReserveCacheResponse
This commit is contained in:
parent
71d9426877
commit
c7d467b6b0
2 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ import {
|
|||
ArtifactCacheEntry,
|
||||
CommitCacheRequest,
|
||||
ReserveCacheRequest,
|
||||
ReserverCacheResponse
|
||||
ReserveCacheResponse
|
||||
} from "./contracts";
|
||||
import * as utils from "./utils/actionUtils";
|
||||
|
||||
|
@ -113,7 +113,7 @@ export async function reserveCache(key: string): Promise<number> {
|
|||
const reserveCacheRequest: ReserveCacheRequest = {
|
||||
key
|
||||
};
|
||||
const response = await restClient.create<ReserverCacheResponse>(
|
||||
const response = await restClient.create<ReserveCacheResponse>(
|
||||
"caches",
|
||||
reserveCacheRequest,
|
||||
getRequestOptions()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue