Skip to content

Commit

Permalink
chore(deps): update dependency typescript to v5 (#105)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: eps1lon <silbermann.sebastian@gmail.com>
  • Loading branch information
renovate[bot] and eps1lon committed Mar 23, 2024
1 parent e7cc22f commit 570a76f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions dist/index.js
Expand Up @@ -29831,8 +29831,8 @@ query openPullRequests($owner: String!, $repo: String!, $after: String, $baseRef
* Assumes that the label exists
* @returns `true` if the label was added, `false` otherwise (e.g. when it already exists)
*/
function addLabelIfNotExists(labelName, issue, { client }) {
return __awaiter(this, void 0, void 0, function* () {
function addLabelIfNotExists(labelName_1, issue_1, _a) {
return __awaiter(this, arguments, void 0, function* (labelName, issue, { client }) {
core.debug(JSON.stringify(issue, null, 2));
const hasLabel = issue.labels.nodes.find((labe) => {
return labe.name === labelName;
Expand Down Expand Up @@ -29861,8 +29861,8 @@ function addLabelIfNotExists(labelName, issue, { client }) {
});
});
}
function removeLabelIfExists(labelName, issue, { client }) {
return __awaiter(this, void 0, void 0, function* () {
function removeLabelIfExists(labelName_1, issue_1, _a) {
return __awaiter(this, arguments, void 0, function* (labelName, issue, { client }) {
const hasLabel = issue.labels.nodes.find((labe) => {
return labe.name === labelName;
}) !== undefined;
Expand Down Expand Up @@ -29893,8 +29893,8 @@ function removeLabelIfExists(labelName, issue, { client }) {
});
});
}
function addComment(comment, { number }, { client }) {
return __awaiter(this, void 0, void 0, function* () {
function addComment(comment_1, _a, _b) {
return __awaiter(this, arguments, void 0, function* (comment, { number }, { client }) {
try {
yield client.rest.issues.createComment({
owner: github.context.repo.owner,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -14,7 +14,7 @@
"@types/node": "^20.11.30",
"@vercel/ncc": "0.38.1",
"prettier": "2.8.8",
"typescript": "4.9.5"
"typescript": "5.4.3"
},
"prettier": {
"useTabs": true
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Expand Up @@ -159,10 +159,10 @@ tunnel@^0.0.6:
resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c"
integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==

typescript@4.9.5:
version "4.9.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
typescript@5.4.3:
version "5.4.3"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff"
integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==

undici-types@~5.26.4:
version "5.26.5"
Expand Down

0 comments on commit 570a76f

Please sign in to comment.