Merge pull request #105 from svenstaro/bump-deps

Bump deps
This commit is contained in:
Sven-Hendrik Haase 2023-05-22 22:29:47 +02:00 committed by GitHub
commit d8e2a64134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8285 additions and 3243 deletions

View File

@ -3,6 +3,7 @@
## Unreleased ## Unreleased
- Add `make_latest` input parameter. Can be set to `false` to prevent the created release from being marked as the latest release for the repository [#100](https://github.com/svenstaro/upload-release-action/pull/100) (thanks @brandonkelly) - Add `make_latest` input parameter. Can be set to `false` to prevent the created release from being marked as the latest release for the repository [#100](https://github.com/svenstaro/upload-release-action/pull/100) (thanks @brandonkelly)
- Don't try to upload empty files [#102](https://github.com/svenstaro/upload-release-action/pull/102) (thanks @Loyalsoldier) - Don't try to upload empty files [#102](https://github.com/svenstaro/upload-release-action/pull/102) (thanks @Loyalsoldier)
- Bump all deps [#105](https://github.com/svenstaro/upload-release-action/pull/105)
## [2.5.0] - 2023-02-21 ## [2.5.0] - 2023-02-21
- Add retry to upload release [#96](https://github.com/svenstaro/upload-release-action/pull/96) (thanks @sonphantrung) - Add retry to upload release [#96](https://github.com/svenstaro/upload-release-action/pull/96) (thanks @sonphantrung)

10401
dist/index.js vendored

File diff suppressed because it is too large Load Diff

1116
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -31,23 +31,23 @@
"@actions/github": "^5.1.1", "@actions/github": "^5.1.1",
"@lifeomic/attempt": "^3.0.3", "@lifeomic/attempt": "^3.0.3",
"@octokit/core": "^4.2.1", "@octokit/core": "^4.2.1",
"glob": "^7" "glob": "^10"
}, },
"devDependencies": { "devDependencies": {
"@octokit/types": "^9.2.3", "@octokit/types": "^9.2.3",
"@types/glob": "^7", "@types/glob": "^8",
"@types/jest": "^29", "@types/jest": "^29",
"@types/node": "^16", "@types/node": "^16",
"@typescript-eslint/parser": "^5", "@typescript-eslint/parser": "^5",
"@vercel/ncc": "^0.36.0", "@vercel/ncc": "^0.36.1",
"eslint": "^8", "eslint": "^8",
"eslint-plugin-github": "^4.6", "eslint-plugin-github": "^4.7",
"eslint-plugin-jest": "^27", "eslint-plugin-jest": "^27",
"jest": "^29", "jest": "^29",
"jest-circus": "^29", "jest-circus": "^29",
"js-yaml": "^4", "js-yaml": "^4",
"prettier": "^2.8", "prettier": "^2.8",
"ts-jest": "^29", "ts-jest": "^29",
"typescript": "^4" "typescript": "^5"
} }
} }