Skip to content

Commit 07dfb68

Browse files
committed
chore: bump packages
1 parent 9a80ce7 commit 07dfb68

File tree

4 files changed

+86
-85
lines changed

4 files changed

+86
-85
lines changed

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"author": "Alex Miller",
3030
"license": "MIT",
3131
"dependencies": {
32-
"@actions/core": "^1.10.1",
32+
"@actions/core": "^1.11.0",
3333
"@actions/github": "^6.0.0",
3434
"uuid": "^10.0.0"
3535
},
@@ -42,9 +42,9 @@
4242
"@types/eslint__js": "^8.42.3",
4343
"@types/node": "^22.7.4",
4444
"@types/uuid": "^10.0.0",
45-
"@typescript-eslint/eslint-plugin": "^8.7.0",
46-
"@typescript-eslint/parser": "^8.7.0",
47-
"@vitest/coverage-v8": "^2.1.1",
45+
"@typescript-eslint/eslint-plugin": "^8.8.0",
46+
"@typescript-eslint/parser": "^8.8.0",
47+
"@vitest/coverage-v8": "^2.1.2",
4848
"chalk": "^5.3.0",
4949
"changelogithub": "^0.13.10",
5050
"esbuild": "^0.24.0",
@@ -56,7 +56,7 @@
5656
"eslint-plugin-import-x": "^4.3.1",
5757
"prettier": "3.3.3",
5858
"typescript": "^5.6.2",
59-
"typescript-eslint": "^8.7.0",
60-
"vitest": "^2.1.1"
59+
"typescript-eslint": "^8.8.0",
60+
"vitest": "^2.1.2"
6161
}
6262
}

pnpm-lock.yaml

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

src/action.spec.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
import * as core from "@actions/core";
22
import { v4 } from "uuid";
3-
import {
4-
afterEach,
5-
beforeEach,
6-
describe,
7-
expect,
8-
it,
9-
vi,
10-
type MockInstance,
11-
} from "vitest";
3+
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
124

135
import { type ActionConfig, getConfig } from "./action.ts";
146

src/main.spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,10 @@ describe("main", () => {
9494
"logInfoForBranchNameResult",
9595
);
9696

97-
returnDispatchGetRunIdAndUrlMock = vi.spyOn(returnDispatch, "getRunIdAndUrl");
97+
returnDispatchGetRunIdAndUrlMock = vi.spyOn(
98+
returnDispatch,
99+
"getRunIdAndUrl",
100+
);
98101
returnDispatchGetWorkflowIdMock = vi
99102
.spyOn(returnDispatch, "getWorkflowId")
100103
.mockResolvedValue(0);

0 commit comments

Comments
 (0)