Skip to content

Commit

Permalink
Update node and deps (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
NiharR27 authored Aug 27, 2024
1 parent a8426da commit f897c34
Show file tree
Hide file tree
Showing 6 changed files with 3,445 additions and 5,199 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inputs:
description: 'The name of the tag for this release. If GITHUB_REF points to a tag (i.e. you are running this action in the context of a tag being pushed), this tag is going to be used. If not, this input is required.'
required: false
target_commitish:
description: "The commit this release should point to. Defaults to GITHUB_SHA."
description: 'The commit this release should point to. Defaults to GITHUB_SHA.'
required: false
prerelease:
description: 'Whether this release is a prerelease.'
Expand All @@ -36,5 +36,5 @@ outputs:
upload_url:
description: 'The URL for uploading assets to the created release.'
runs:
using: 'node12'
using: 'node20'
main: 'dist/index.js'
31 changes: 2 additions & 29 deletions dist/index.js

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions dist/index.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*!
* is-plain-object <https://github.com/jonschlinkert/is-plain-object>
*
* Copyright (c) 2014-2017, Jon Schlinkert.
* Released under the MIT License.
*/

/*!
* isobject <https://github.com/jonschlinkert/isobject>
*
* Copyright (c) 2014-2017, Jon Schlinkert.
* Released under the MIT License.
*/

/*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */

/*! ws. MIT License. Einar Otto Stangvik <[email protected]> */
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@
"author": "Thomas Eizinger",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/core": "^1.10.1",
"@octokit/action": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"eslint": "^5.16.0",
"eslint-plugin-github": "^2.0.0",
"eslint-plugin-jest": "^22.21.0",
"jest": "^24.9.0",
"jest-circus": "^25.1.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"eslint": "^9.6.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.6.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"mock-env": "^0.2.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
"prettier": "^3.3.2",
"ts-jest": "^29.2.1",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function run(): Promise<void> {
setOutput('url', url);
setOutput('html_url', htmlUrl);
setOutput('upload_url', uploadUrl);
} catch (error) {
} catch (error: any) {
setFailed(error.message);
}
}
Expand Down
Loading

0 comments on commit f897c34

Please sign in to comment.