upgrade deps

This commit is contained in:
Conor Sloan
2023-11-22 13:10:58 +00:00
parent f574209690
commit 6babec0772
3 changed files with 69 additions and 246 deletions
Generated Vendored
+2 -2
View File
@@ -72631,7 +72631,7 @@ async function createArchives(distPath, archiveTargetPath = createTempDir()) {
tar
.c({
file: tarPath,
C: distPath,
C: distPath, // Change to the source directory for relative paths (TODO)
gzip: true
}, ['.'])
// eslint-disable-next-line github/no-then
@@ -72797,7 +72797,7 @@ async function uploadLayer(layer, file, registryURL, checkBlobEndpoint, uploadBl
headers: {
Authorization: `Bearer ${b64Token}`,
'Content-Type': 'application/octet-stream',
'Accept-Encoding': 'gzip',
'Accept-Encoding': 'gzip', // TODO: What about for the config layer?
'Content-Length': layer.size.toString()
},
validateStatus: () => {