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
+15
View File
@@ -0,0 +1,15 @@
const b4a = require('b4a')
module.exports = class PassThroughDecoder {
constructor (encoding) {
this.encoding = encoding
}
decode (tail) {
return b4a.toString(tail, this.encoding)
}
flush () {
return ''
}
}