Skip to content

Commit b7a4f65

Browse files
authored
chore(deps): update dependencies (#225)
1 parent 492c953 commit b7a4f65

File tree

5 files changed

+55
-63
lines changed

5 files changed

+55
-63
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v6
1515
- uses: codespell-project/actions-codespell@v2
1616
- uses: pnpm/action-setup@v4
17-
- uses: actions/setup-node@v5
17+
- uses: actions/setup-node@v6
1818
with:
1919
node-version-file: ".nvmrc"
2020
cache: pnpm

action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ runs:
6565
- uses: pnpm/action-setup@v4
6666
with:
6767
package_json_file: ${{ steps.action_relative_path.outputs.action_path }}/package.json
68-
- uses: actions/setup-node@v5
68+
- uses: actions/setup-node@v6
6969
with:
7070
node-version-file: ${{ steps.action_relative_path.outputs.action_path }}/.nvmrc
7171
package-manager-cache: false
@@ -121,7 +121,7 @@ runs:
121121

122122
- name: Upload Build Artifacts
123123
id: upload-build-artifacts
124-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v6
125125
with:
126126
path: |-
127127
${{ steps.build.outputs.gh && fromJson(steps.build.outputs.gh).dest }}
@@ -194,5 +194,5 @@ runs:
194194
shell: bash
195195
run: |
196196
# Failed
197-
node -e 'require("@actions/core").setFailed("Failed. See details above.")'
197+
node -e 'import { setFailed } from "@actions/core"; setFailed("Failed. See details above.")'
198198
working-directory: ${{ github.action_path }}

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"dependencies": {
3-
"@actions/core": "^2.0.1",
3+
"@actions/core": "^3.0.0",
44
"finalhandler": "^2.1.1",
55
"puppeteer": "^24",
6-
"serve-static": "^2.2.0",
6+
"serve-static": "^2.2.1",
77
"split2": "^4.2.0",
88
"subresources": "^3.0.1",
99
"yaml": "^2.8.2"
@@ -25,18 +25,18 @@
2525
"node": "^24"
2626
},
2727
"type": "module",
28-
"packageManager": "pnpm@10.25.0",
28+
"packageManager": "pnpm@10.30.3",
2929
"scripts": {
3030
"dev": "tsc -w",
3131
"typecheck": "tsc",
3232
"lint": "prettier . --check"
3333
},
3434
"devDependencies": {
3535
"@types/finalhandler": "^1.2.4",
36-
"@types/node": "^24.5.2",
36+
"@types/node": "^24.10.14",
3737
"@types/serve-static": "^2.2.0",
3838
"@types/split2": "^4.2.3",
39-
"prettier": "^3.7.4",
39+
"prettier": "^3.8.1",
4040
"typescript": "^5.9.3"
4141
}
4242
}

pnpm-lock.yaml

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

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { exec, type ExecOptions } from "node:child_process";
55
import { readFile, writeFile } from "node:fs/promises";
66
import { createServer, type Server } from "node:http";
77

8-
import core from "@actions/core";
8+
import * as core from "@actions/core";
99
import finalhandler from "finalhandler";
1010
import serveStatic from "serve-static";
1111
import split from "split2";

0 commit comments

Comments
 (0)