Import @actions/artifact@v1 as artifact-legacy and v2 as artifact

This commit is contained in:
Angela P Wen
2024-09-04 14:06:01 -07:00
parent 889597e41d
commit cdcb85f97a
5233 changed files with 2173310 additions and 71354 deletions
+13
View File
@@ -0,0 +1,13 @@
module.exports = class BrowserDecoder {
constructor (encoding) {
this.decoder = new TextDecoder(encoding === 'utf16le' ? 'utf16-le' : encoding)
}
decode (data) {
return this.decoder.decode(data, { stream: true })
}
flush () {
return this.decoder.decode(new Uint8Array(0))
}
}