Skip to content

Commit 82c141c

Browse files
authored
Bump @actions/artifact to version 0.6.1 (#286)
1 parent da838ae commit 82c141c

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7078,9 +7078,7 @@ class UploadHttpClient {
70787078
return __awaiter(this, void 0, void 0, function* () {
70797079
const fileStat = yield stat(parameters.file);
70807080
const totalFileSize = fileStat.size;
7081-
// on Windows with mkfifo from MSYS2 stats.isFIFO returns false, so we check if running on Windows node and
7082-
// if the file has size of 0 to compensate
7083-
const isFIFO = fileStat.isFIFO() || (process.platform === 'win32' && totalFileSize === 0);
7081+
const isFIFO = fileStat.isFIFO();
70847082
let offset = 0;
70857083
let isUploadSuccessful = true;
70867084
let failedChunkSizes = 0;

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
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.6.0",
32+
"@actions/artifact": "^0.6.1",
3333
"@actions/core": "^1.2.6",
3434
"@actions/glob": "^0.1.0",
3535
"@actions/io": "^1.0.2"

0 commit comments

Comments
 (0)