Skip to content

Commit 27121b0

Browse files
authored
Ingest v0.5.2 of @actions/artifact (#224)
* npm install --update @actions/artifact * update .license file * npm run release
1 parent 4537e11 commit 27121b0

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

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

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

dist/index.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -4051,7 +4051,7 @@ function run() {
40514051
core.info(`With the provided path, there will be ${searchResult.filesToUpload.length} file${s} uploaded`);
40524052
core.debug(`Root artifact directory is ${searchResult.rootDirectory}`);
40534053
if (searchResult.filesToUpload.length > 10000) {
4054-
core.warning(`There are over 10,000 files in this artifact, consider create an archive before upload to improve the upload performance.`);
4054+
core.warning(`There are over 10,000 files in this artifact, consider creating an archive before upload to improve the upload performance.`);
40554055
}
40564056
const artifactClient = artifact_1.create();
40574057
const options = {
@@ -8190,8 +8190,9 @@ function isRetryableStatusCode(statusCode) {
81908190
}
81918191
const retryableStatusCodes = [
81928192
http_client_1.HttpCodes.BadGateway,
8193-
http_client_1.HttpCodes.ServiceUnavailable,
81948193
http_client_1.HttpCodes.GatewayTimeout,
8194+
http_client_1.HttpCodes.InternalServerError,
8195+
http_client_1.HttpCodes.ServiceUnavailable,
81958196
http_client_1.HttpCodes.TooManyRequests,
81968197
413 // Payload Too Large
81978198
];

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
},
3030
"homepage": "https://github.com/actions/upload-artifact#readme",
3131
"dependencies": {
32-
"@actions/artifact": "^0.5.1",
32+
"@actions/artifact": "^0.5.2",
3333
"@actions/core": "^1.2.6",
3434
"@actions/glob": "^0.1.0",
3535
"@actions/io": "^1.0.2"

0 commit comments

Comments
 (0)