nwtgck / actions-netlify

šŸš€ Netlify deploy from GitHub Actions
MIT License
326 stars 41 forks source link

Build(deps-dev): bump typescript from 5.4.2 to 5.4.5 #1159

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 5 months ago

Bumps typescript from 5.4.2 to 5.4.5.

Release notes

Sourced from typescript's releases.

TypeScript 5.4.5

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.4

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

TypeScript 5.4.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • 27bcd4c Update LKG
  • 9f33bf1 šŸ¤– Pick PR #58098 (Fix constraints of nested homomorph...) into release-5.4 (#...
  • 71b2f84 Bump version to 5.4.5 and LKG
  • 892936f šŸ¤– Pick PR #58083 (Don't propagate partial union/inter...) into release-5.4 (#...
  • 38a7c05 release-5.4: Always set node-version for setup-node (#58117)
  • b754fc3 šŸ¤– Pick PR #57778 (fix type import check for default-i...) into release-5.4 (#...
  • 8eb3367 Bump version to 5.4.4 and LKG
  • de9096b šŸ¤– Pick PR #57871 (Divide-and-conquer strategy for int...) into release-5.4 (#...
  • 06aae98 šŸ¤– Pick PR #57973 (Compare package.json paths with cor...) into release-5.4 (#...
  • 6d8134e šŸ¤– Pick PR #57637 (Fixed a regression related to deter...) into release-5.4 (#...
  • Additional commits viewable in compare view


Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

github-actions[bot] commented 5 months ago

šŸš€ Deployed on https://6616eaf88e9d7c3b90b0a929--nwtgck-actions-netlify.netlify.app

nwtgck commented 2 months ago

@dependabot rebase

dependabot[bot] commented 2 months ago

Looks like this PR is already up-to-date with develop! If you'd still like to recreate it from scratch, overwriting any edits, you can request @dependabot recreate.

nwtgck commented 2 months ago

@dependabot rebase

nwtgck commented 2 months ago

@github-actions run

šŸ”Ø Build & Push ```js // Get pull-req URL like "https://api.github.com/repos/nwtgck/actions-merge-preview/pulls/4" const pullReqUrl = context.payload.issue.pull_request.url; const githubUser = context.payload.repository.owner.login; const res = await fetch(pullReqUrl, { headers: [ ['Authorization', `Basic ${Buffer.from(`${githubUser}:${githubToken}`).toString('base64')}`] ] }); const resJson = await res.json(); const prUserName = resJson.head.user.login; const baseBranchName = resJson.base.ref; const branchName = resJson.head.ref; const fullRepoName = resJson.head.repo.full_name; const buildBranch = `actions-build/${prUserName}-${branchName}`; execSync(`git config --global user.email "github-actions[bot]@users.noreply.github.com"`); execSync(`git config --global user.name "github-actions[bot]"`); // (from: https://stackoverflow.com/a/23987039/2885946) execSync(`git fetch --all`); console.log(execSync(`git checkout ${baseBranchName}`).toString()); console.log(execSync(`git checkout -b ${buildBranch} ${baseBranchName}`).toString()); console.log(execSync(`git pull https://github.com/${fullRepoName}.git ${branchName}`).toString()); console.log(execSync(`npm ci`).toString()); console.log(execSync(`npm run all`).toString()); if (execSync('git status --porcelain').length === 0) { const commentBody = `\ Built file is up to date. `; // Comment the deploy URL await postComment(commentBody); } else { console.log(execSync(`git add .; git commit -m 'build'`).toString()); // Push preview branch // NOTE: Force push (should be safe because preview branch always start with "actions-build/") execSync(`git push -fu origin ${buildBranch}`); const baseRepoFullName = context.payload.repository.full_name; // Comment body const commentBody = `\ Built branch: Compare: https://github.com/${baseRepoFullName}/compare/${resJson.base.ref}...${buildBranch} `; // Comment the deploy URL await postComment(commentBody); } ```
dependabot[bot] commented 2 months ago

Superseded by #1178.