Skip to content

Commit

Permalink
chore: bump packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Codex- committed Oct 3, 2024
1 parent 9a80ce7 commit 07dfb68
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 85 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"author": "Alex Miller",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/core": "^1.11.0",
"@actions/github": "^6.0.0",
"uuid": "^10.0.0"
},
Expand All @@ -42,9 +42,9 @@
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.4",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/coverage-v8": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitest/coverage-v8": "^2.1.2",
"chalk": "^5.3.0",
"changelogithub": "^0.13.10",
"esbuild": "^0.24.0",
Expand All @@ -56,7 +56,7 @@
"eslint-plugin-import-x": "^4.3.1",
"prettier": "3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vitest": "^2.1.1"
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.2"
}
}
144 changes: 75 additions & 69 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 1 addition & 9 deletions src/action.spec.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
import * as core from "@actions/core";
import { v4 } from "uuid";
import {
afterEach,
beforeEach,
describe,
expect,
it,
vi,
type MockInstance,
} from "vitest";
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";

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

Expand Down
5 changes: 4 additions & 1 deletion src/main.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ describe("main", () => {
"logInfoForBranchNameResult",
);

returnDispatchGetRunIdAndUrlMock = vi.spyOn(returnDispatch, "getRunIdAndUrl");
returnDispatchGetRunIdAndUrlMock = vi.spyOn(
returnDispatch,
"getRunIdAndUrl",
);
returnDispatchGetWorkflowIdMock = vi
.spyOn(returnDispatch, "getWorkflowId")
.mockResolvedValue(0);
Expand Down

0 comments on commit 07dfb68

Please sign in to comment.