mirror of https://github.com/actions/toolkit
Merge pull request #7 from WarpBuilds/hotfix-s3-cacheKeyResponse
fixes s3 return valuepull/1935/head
commit
20d97678a8
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "github-actions.warp-cache",
|
"name": "github-actions.warp-cache",
|
||||||
"version": "1.0.0",
|
"version": "1.1.17",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "github-actions.warp-cache",
|
"name": "github-actions.warp-cache",
|
||||||
"version": "1.0.0",
|
"version": "1.1.17",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.10.0",
|
"@actions/core": "^1.10.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "github-actions.warp-cache",
|
"name": "github-actions.warp-cache",
|
||||||
"version": "1.1.16",
|
"version": "1.1.17",
|
||||||
"preview": true,
|
"preview": true,
|
||||||
"description": "Github action to use WarpBuild's in-house cache offering",
|
"description": "Github action to use WarpBuild's in-house cache offering",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
|
@ -417,7 +417,10 @@ export async function saveCache(
|
||||||
completedParts
|
completedParts
|
||||||
)
|
)
|
||||||
|
|
||||||
cacheKeyResponse = commitCacheResponse.result?.s3?.cache_key ?? ''
|
cacheKeyResponse =
|
||||||
|
commitCacheResponse.result?.cache_entry?.cache_user_given_key ??
|
||||||
|
commitCacheResponse.result?.s3?.cache_key ??
|
||||||
|
''
|
||||||
|
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue