Bump artifact dependencies if CODEQL_ACTION_ARTIFACT_V2_UPGRADE enabled (#2482)
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
This commit is contained in:
parent
cf5b0a9041
commit
a196a714b8
5388 changed files with 2176737 additions and 71701 deletions
6
node_modules/@azure/storage-blob/README.md
generated
vendored
6
node_modules/@azure/storage-blob/README.md
generated
vendored
|
|
@ -289,7 +289,7 @@ const blobServiceClient = new BlobServiceClient(
|
|||
|
||||
async function main() {
|
||||
let i = 1;
|
||||
let containers = blobServiceClient.listContainers();
|
||||
const containers = blobServiceClient.listContainers();
|
||||
for await (const container of containers) {
|
||||
console.log(`Container ${i++}: ${container.name}`);
|
||||
}
|
||||
|
|
@ -314,7 +314,7 @@ const blobServiceClient = new BlobServiceClient(
|
|||
|
||||
async function main() {
|
||||
let i = 1;
|
||||
let iter = blobServiceClient.listContainers();
|
||||
const iter = blobServiceClient.listContainers();
|
||||
let containerItem = await iter.next();
|
||||
while (!containerItem.done) {
|
||||
console.log(`Container ${i++}: ${containerItem.value.name}`);
|
||||
|
|
@ -406,7 +406,7 @@ async function main() {
|
|||
const containerClient = blobServiceClient.getContainerClient(containerName);
|
||||
|
||||
let i = 1;
|
||||
let blobs = containerClient.listBlobsFlat();
|
||||
const blobs = containerClient.listBlobsFlat();
|
||||
for await (const blob of blobs) {
|
||||
console.log(`Blob ${i++}: ${blob.name}`);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue