fix: update dependencies

Closes #17.
This commit is contained in:
dessant
2020-07-07 23:34:15 +03:00
parent ff669222a8
commit a016bfbb7a
5 changed files with 2118 additions and 1270 deletions

2
.nvmrc
View File

@@ -1 +1 @@
12.14.1
12.18.2

View File

@@ -1,2 +1,4 @@
singleQuote: true
bracketSpacing: false
arrowParens: 'avoid'
trailingComma: 'none'

3368
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -20,16 +20,16 @@
"release": "standard-version"
},
"dependencies": {
"@actions/core": "^1.2.2",
"@actions/github": "^2.1.0",
"@hapi/joi": "^17.1.0",
"@actions/core": "^1.2.4",
"@actions/github": "^4.0.0",
"@hapi/joi": "^17.1.1",
"decamelize": "^4.0.0"
},
"devDependencies": {
"@zeit/ncc": "^0.21.1",
"npm-check-updates": "^4.0.1",
"prettier": "^1.19.1",
"standard-version": "^7.1.0"
"@zeit/ncc": "^0.22.3",
"npm-check-updates": "^7.0.1",
"prettier": "^2.0.5",
"standard-version": "^8.0.0"
},
"engines": {
"node": ">=12.0.0"

View File

@@ -7,7 +7,7 @@ const schema = require('./schema');
async function run() {
try {
const config = getConfig();
const client = new github.GitHub(config.githubToken);
const client = github.getOctokit(config.githubToken);
const app = new App(config, client);
await app.lockThreads();