github-action/package.json
Mario Minardi ef403f0d06
action.yml,src: add support for workload identity federation
Add support for workload identity federation based authentication.

Updates https://github.com/tailscale/corp/issues/31264

Signed-off-by: Mario Minardi <mario@tailscale.com>
2025-10-29 07:51:52 -06:00

34 lines
946 B
JSON

{
"name": "github-action",
"version": "4.0.0",
"description": "Connect your GitHub Action workflow to Tailscale",
"main": "dist/main.js",
"scripts": {
"build": "ncc build src/main.ts -o dist && ncc build src/logout/logout.ts -o dist/logout"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tailscale/github-action"
},
"author": "Lee Briggs, Tailscale Inc, & Contributors",
"license": "BSD-3-Clause",
"dependencies": {
"@actions/cache": "^4.0.0",
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@actions/tool-cache": "^2.0.1",
"semver": "^6.3.1"
},
"devDependencies": {
"@types/node": "^20.17.6",
"@vercel/ncc": "^0.38.3",
"typescript": "^5.8.3",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^3.2.2"
},
"overrides": {
"glob": "^10.3.10",
"inflight": "npm:@isaacs/inflight@^1.0.6"
}
}