Skip to content

Commit da26677

Browse files
committed
bump @actions/cache to v4.0.2, prep for v4.2.2 release
1 parent 7921ae2 commit da26677

File tree

8 files changed

+64
-28
lines changed

8 files changed

+64
-28
lines changed

.licenses/npm/@actions/cache.dep.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

RELEASES.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Releases
22

3+
### 4.2.2
4+
5+
- Bump `@actions/cache` to v4.0.2
6+
37
### 4.2.1
48

59
- Bump `@actions/cache` to v4.0.1

dist/restore-only/index.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -412,12 +412,20 @@ function saveCacheV2(paths, key, options, enableCrossOsArchive = false) {
412412
key,
413413
version
414414
};
415-
const response = yield twirpClient.CreateCacheEntry(request);
416-
if (!response.ok) {
415+
let signedUploadUrl;
416+
try {
417+
const response = yield twirpClient.CreateCacheEntry(request);
418+
if (!response.ok) {
419+
throw new Error('Response was not ok');
420+
}
421+
signedUploadUrl = response.signedUploadUrl;
422+
}
423+
catch (error) {
424+
core.debug(`Failed to reserve cache: ${error}`);
417425
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
418426
}
419427
core.debug(`Attempting to upload cache located at: ${archivePath}`);
420-
yield cacheHttpClient.saveCache(cacheId, archivePath, response.signedUploadUrl, options);
428+
yield cacheHttpClient.saveCache(cacheId, archivePath, signedUploadUrl, options);
421429
const finalizeRequest = {
422430
key,
423431
version,
@@ -65309,7 +65317,7 @@ module.exports = require("zlib");
6530965317
/***/ ((module) => {
6531065318

6531165319
"use strict";
65312-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.1","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/semver":"^6.0.0","typescript":"^5.2.2"}}');
65320+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.2","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/semver":"^6.0.0","typescript":"^5.2.2"}}');
6531365321

6531465322
/***/ }),
6531565323

dist/restore/index.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -412,12 +412,20 @@ function saveCacheV2(paths, key, options, enableCrossOsArchive = false) {
412412
key,
413413
version
414414
};
415-
const response = yield twirpClient.CreateCacheEntry(request);
416-
if (!response.ok) {
415+
let signedUploadUrl;
416+
try {
417+
const response = yield twirpClient.CreateCacheEntry(request);
418+
if (!response.ok) {
419+
throw new Error('Response was not ok');
420+
}
421+
signedUploadUrl = response.signedUploadUrl;
422+
}
423+
catch (error) {
424+
core.debug(`Failed to reserve cache: ${error}`);
417425
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
418426
}
419427
core.debug(`Attempting to upload cache located at: ${archivePath}`);
420-
yield cacheHttpClient.saveCache(cacheId, archivePath, response.signedUploadUrl, options);
428+
yield cacheHttpClient.saveCache(cacheId, archivePath, signedUploadUrl, options);
421429
const finalizeRequest = {
422430
key,
423431
version,
@@ -65309,7 +65317,7 @@ module.exports = require("zlib");
6530965317
/***/ ((module) => {
6531065318

6531165319
"use strict";
65312-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.1","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/semver":"^6.0.0","typescript":"^5.2.2"}}');
65320+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.2","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/semver":"^6.0.0","typescript":"^5.2.2"}}');
6531365321

6531465322
/***/ }),
6531565323

dist/save-only/index.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -412,12 +412,20 @@ function saveCacheV2(paths, key, options, enableCrossOsArchive = false) {
412412
key,
413413
version
414414
};
415-
const response = yield twirpClient.CreateCacheEntry(request);
416-
if (!response.ok) {
415+
let signedUploadUrl;
416+
try {
417+
const response = yield twirpClient.CreateCacheEntry(request);
418+
if (!response.ok) {
419+
throw new Error('Response was not ok');
420+
}
421+
signedUploadUrl = response.signedUploadUrl;
422+
}
423+
catch (error) {
424+
core.debug(`Failed to reserve cache: ${error}`);
417425
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
418426
}
419427
core.debug(`Attempting to upload cache located at: ${archivePath}`);
420-
yield cacheHttpClient.saveCache(cacheId, archivePath, response.signedUploadUrl, options);
428+
yield cacheHttpClient.saveCache(cacheId, archivePath, signedUploadUrl, options);
421429
const finalizeRequest = {
422430
key,
423431
version,
@@ -65322,7 +65330,7 @@ module.exports = require("zlib");
6532265330
/***/ ((module) => {
6532365331

6532465332
"use strict";
65325-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.1","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/semver":"^6.0.0","typescript":"^5.2.2"}}');
65333+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.2","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/semver":"^6.0.0","typescript":"^5.2.2"}}');
6532665334

6532765335
/***/ }),
6532865336

dist/save/index.js

+12-4
Original file line numberDiff line numberDiff line change
@@ -412,12 +412,20 @@ function saveCacheV2(paths, key, options, enableCrossOsArchive = false) {
412412
key,
413413
version
414414
};
415-
const response = yield twirpClient.CreateCacheEntry(request);
416-
if (!response.ok) {
415+
let signedUploadUrl;
416+
try {
417+
const response = yield twirpClient.CreateCacheEntry(request);
418+
if (!response.ok) {
419+
throw new Error('Response was not ok');
420+
}
421+
signedUploadUrl = response.signedUploadUrl;
422+
}
423+
catch (error) {
424+
core.debug(`Failed to reserve cache: ${error}`);
417425
throw new ReserveCacheError(`Unable to reserve cache with key ${key}, another job may be creating this cache.`);
418426
}
419427
core.debug(`Attempting to upload cache located at: ${archivePath}`);
420-
yield cacheHttpClient.saveCache(cacheId, archivePath, response.signedUploadUrl, options);
428+
yield cacheHttpClient.saveCache(cacheId, archivePath, signedUploadUrl, options);
421429
const finalizeRequest = {
422430
key,
423431
version,
@@ -65322,7 +65330,7 @@ module.exports = require("zlib");
6532265330
/***/ ((module) => {
6532365331

6532465332
"use strict";
65325-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.1","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/semver":"^6.0.0","typescript":"^5.2.2"}}');
65333+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4.0.2","preview":true,"description":"Actions cache lib","keywords":["github","actions","cache"],"homepage":"https://github.com/actions/toolkit/tree/main/packages/cache","license":"MIT","main":"lib/cache.js","types":"lib/cache.d.ts","directories":{"lib":"lib","test":"__tests__"},"files":["lib","!.DS_Store"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/actions/toolkit.git","directory":"packages/cache"},"scripts":{"audit-moderate":"npm install && npm audit --json --audit-level=moderate > audit.json","test":"echo \\"Error: run tests from root\\" && exit 1","tsc":"tsc"},"bugs":{"url":"https://github.com/actions/toolkit/issues"},"dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.0.1","@actions/glob":"^0.1.0","@actions/http-client":"^2.1.1","@actions/io":"^1.0.1","@azure/abort-controller":"^1.1.0","@azure/ms-rest-js":"^2.6.0","@azure/storage-blob":"^12.13.0","@protobuf-ts/plugin":"^2.9.4","semver":"^6.3.1"},"devDependencies":{"@types/semver":"^6.0.0","typescript":"^5.2.2"}}');
6532665334

6532765335
/***/ }),
6532865336

package-lock.json

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cache",
3-
"version": "4.2.1",
3+
"version": "4.2.2",
44
"private": true,
55
"description": "Cache dependencies and build outputs",
66
"main": "dist/restore/index.js",
@@ -23,7 +23,7 @@
2323
"author": "GitHub",
2424
"license": "MIT",
2525
"dependencies": {
26-
"@actions/cache": "^4.0.1",
26+
"@actions/cache": "^4.0.2",
2727
"@actions/core": "^1.11.1",
2828
"@actions/exec": "^1.1.1",
2929
"@actions/io": "^1.1.3"

0 commit comments

Comments
 (0)