Skip to content

Commit 7005cad

Browse files
Copilotchenrui333
andcommitted
chore: bump @types/node, enable Dependabot updates, rebuild dist
Co-authored-by: chenrui333 <[email protected]>
1 parent 4366261 commit 7005cad

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ updates:
1212
- dependency-name: node-fetch
1313
versions:
1414
- ">=3.0.0"
15-
- dependency-name: "@types/node"
16-
versions:
17-
- ">=22.0.0"
1815
commit-message:
1916
prefix: "chore(deps)"
2017
- package-ecosystem: github-actions

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66

77
* feat(action): respect working_directory for files globs by @stephenway in https://github.com/softprops/action-gh-release/pull/667
88

9+
### Other Changes 🔄
10+
11+
* Move action runtime to node24 and require Node >=24
12+
* Update @types/node to ^22 for Node 24 compatibility
13+
* Enable Dependabot updates for @types/node >=22
14+
915
## 2.3.4
1016

1117
## What's Changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 7 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"devDependencies": {
3636
"@types/glob": "^9.0.0",
3737
"@types/mime-types": "^3.0.1",
38-
"@types/node": "^20.19.19",
38+
"@types/node": "^22",
3939
"@vercel/ncc": "^0.38.4",
4040
"@vitest/coverage-v8": "^3.2.4",
4141
"prettier": "3.6.2",

src/github.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export const upload = async (
183183
'content-type': mime,
184184
authorization: `token ${config.github_token}`,
185185
},
186-
data: fh.readableWebStream({ type: 'bytes' }),
186+
data: fh.readableWebStream(),
187187
});
188188
const json = resp.data;
189189
if (resp.status !== 201) {

0 commit comments

Comments
 (0)