feat: Update dependencies to latest version and refactor action to ES6 module

Signed-off-by: David Dreschner <github-2017@dreschner.net>
This commit is contained in:
David Dreschner 2026-06-21 23:07:25 +02:00
commit 25ddaceda2
No known key found for this signature in database
9 changed files with 60070 additions and 43159 deletions

View file

@ -1,24 +1,26 @@
{
"name": "nextcloud-version-matrix",
"type": "module",
"version": "1.0.0",
"description": "Generate nextcloud version matrix for an app",
"main": "src/action.js",
"main": "src/action.mjs",
"scripts": {
"build": "ncc build src/action.js -o dist",
"test": "INPUT_FILENAME=.github/workflows/info.xml node src/action.js"
"build": "ncc build src/action.mjs -o dist",
"test": "INPUT_FILENAME=.github/workflows/info.xml node src/action.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/http-client": "^2.2.0",
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/http-client": "^4.0.1",
"@xmldom/xmldom": "^0.9.10",
"deep-equal": "^2.2.3",
"url-exist": "^2.0.2",
"xmldom": "^0.6.0",
"xpath": "0.0.27"
"url-exist": "^3.0.1",
"xpath": "^0.0.34"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1"
"@vercel/ncc": "^0.44.0"
}
}