diff --git a/.vscode/settings.json b/.vscode/settings.json index 165e99e..15cc787 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -16,5 +16,8 @@ "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit" }, - "typescript.tsdk": "node_modules/typescript/lib" + "typescript.tsdk": "node_modules/typescript/lib", + "files.associations": { + "*.yaml": "home-assistant" + } } diff --git a/action.yml b/action.yml index b6ec00f..2c93b1d 100644 --- a/action.yml +++ b/action.yml @@ -15,7 +15,7 @@ inputs: required: false default: false runs: - using: 'node16' + using: 'node20' main: 'dist/index.js' branding: icon: git-branch diff --git a/package.json b/package.json index f7d46c4..4a06d35 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,9 @@ "lint": "eslint './**/*.{ts,js}'", "test": "jest" }, + "engines": { + "node": ">=20.0.0" + }, "license": "MIT", "dependencies": { "@actions/core": "^1.10.0",