Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: pnpm run test
- name: lint
if: ${{ always() }}
run: pnpm run lint
run: pnpm run lint --max-warnings=0
- name: style
if: ${{ always() }}
run: pnpm run format:check
Expand Down
464 changes: 237 additions & 227 deletions dist/index.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import jsEslint from "@eslint/js";
import eslintConfigPrettier from "eslint-config-prettier";
import eslintPluginImportX from "eslint-plugin-import-x";
import * as eslintPluginImportX from "eslint-plugin-import-x";
import * as tsEslint from "typescript-eslint";

export default tsEslint.config(
Expand Down
4 changes: 2 additions & 2 deletions mise.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[tools]
node = "20.19.1"
pnpm = "10.10.0"
node = "20.19.2"
pnpm = "10.12.1"
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "return-dispatch",
"version": "2.0.4",
"version": "2.0.5",
"private": true,
"description": "Dispatch an action and output the run ID.",
"main": "lib/main.js",
Expand Down Expand Up @@ -31,27 +31,27 @@
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0"
"@actions/github": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@eslint/js": "^9.28.0",
"@opentf/std": "^0.13.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "~20.17.32",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitest/coverage-v8": "^3.1.2",
"@types/node": "~20.19.0",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"@vitest/coverage-v8": "~3.1.4",
"chalk": "^5.4.1",
"changelogithub": "^13.13.0",
"esbuild": "^0.25.3",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-import-resolver-typescript": "^4.3.4",
"eslint-plugin-import-x": "^4.11.0",
"changelogithub": "^13.15.0",
"esbuild": "^0.25.5",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import-x": "^4.15.2",
"prettier": "3.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"vitest": "^3.1.2"
"typescript-eslint": "^8.34.0",
"vitest": "~3.1.4"
},
"resolutions": {
"vite": ">=6.2.7"
Expand Down
Loading