Fix: Pin dependencies and devDependencies to specific versions for stability
Some checks failed
Test Action / test (push) Failing after 7s

This commit is contained in:
2026-04-07 07:20:13 +02:00
parent 0643b8ca01
commit bffd6ee278

View File

@@ -25,14 +25,14 @@
"node": "24.x"
},
"dependencies": {
"@actions/core": "latest",
"@actions/tool-cache": "latest",
"commander": "latest",
"minimatch": "latest"
"@actions/core": "3.0.0",
"@actions/tool-cache": "4.0.0",
"commander": "14.0.3",
"minimatch": "10.2.5"
},
"devDependencies": {
"@types/node": "^24",
"esbuild": "latest",
"typescript": "latest"
"esbuild": "0.28.0",
"typescript": "6.0.2"
}
}