Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@octokit/rest": "^21.0.0",
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these are autogenerated changes

"@octokit/rest": "^19.0.0",
"mocha": "^10.0.0",
"sinon": "^20.0.0"
"sinon": "^18.0.0"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/issues-no-repro.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these are autogenerated changes

- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
Expand Down
3 changes: 2 additions & 1 deletion samples/drive/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
const {google} = require('googleapis');
const fs = require('fs');
const os = require('os');
const uuid = require('uuid');
const path = require('path');
const {authenticate} = require('@google-cloud/local-auth');
const crypto = require('crypto');
const uuid = crypto.randomUUID();

const drive = google.drive('v3');

Expand Down
3 changes: 1 addition & 2 deletions samples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
"googleapis-common": "^8.0.2-rc.0",
"nconf": "^0.13.0",
"open": "^8.0.0",
"server-destroy": "^1.0.1",
"uuid": "^10.0.0"
"server-destroy": "^1.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
Expand Down
Loading