Compare commits

...

2 Commits
v6.3.3 ... v2

Author SHA1 Message Date
Francesco Renzi
4aed96e0ba Merge pull request #376 from actions/rentziass/actions-core
Bump @actions/core to 1.10.0 for v2
2023-04-28 14:13:11 +01:00
Francesco Renzi
e7d3d7ecb7 Bump @actions/core to 1.10.0 2023-04-28 12:26:08 +01:00
3 changed files with 2283 additions and 163 deletions

2415
dist/index.js vendored

File diff suppressed because it is too large Load Diff

27
package-lock.json generated
View File

@@ -1,13 +1,32 @@
{
"name": "github-script",
"version": "2.0.1",
"version": "2.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@actions/core": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.4.tgz",
"integrity": "sha512-YJCEq8BE3CdN8+7HPZ/4DxJjk/OkZV2FFIf+DlZTC/4iBlzYCD5yjRR6eiOS5llO11zbRltIRuKAjMKaWTE6cg=="
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz",
"integrity": "sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug==",
"requires": {
"@actions/http-client": "^2.0.1",
"uuid": "^8.3.2"
},
"dependencies": {
"@actions/http-client": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.1.0.tgz",
"integrity": "sha512-BonhODnXr3amchh4qkmjPMUO8mFi/zLaaCeCAJZqch8iQqyDnVIkySjB38VHAC8IJ+bnlgfOqlhpyCUZHlQsqw==",
"requires": {
"tunnel": "^0.0.6"
}
},
"uuid": {
"version": "8.3.2",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="
}
}
},
"@actions/github": {
"version": "3.0.0",

View File

@@ -1,7 +1,7 @@
{
"name": "github-script",
"description": "A GitHub action for executing a simple script",
"version": "2.0.1",
"version": "2.1.0",
"author": "GitHub",
"license": "MIT",
"main": "dist/index.js",
@@ -35,7 +35,7 @@
}
},
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/core": "^1.10.0",
"@actions/github": "^3.0.0",
"@actions/io": "^1.0.2",
"@octokit/core": "^2.5.3",