mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-21 09:39:24 +00:00
## What's Changed * dependabot: only do security updates by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/643 * update all deps by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/644 * Update deps to Node 20 by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/653 * Upgrade setup-cloud-sdk package by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/656 * Add CI for release branches by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/661 * Update and drop unnecessary deps by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/662 **Full Changelog**: https://github.com/google-github-actions/setup-gcloud/compare/v1.1.1...c2599dbc0ba1a9cc7e71084707f8c0b2e79516f2
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "setup-gcloud",
|
|
"version": "2.0.0",
|
|
"description": "Setup gcloud GitHub action",
|
|
"main": "dist/main/index.js",
|
|
"scripts": {
|
|
"build": "ncc build -m src/main.ts",
|
|
"format": "prettier --write **/*.ts",
|
|
"integration": "node --require ts-node/register --test-reporter spec --test tests/integration.test.ts",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"test": "node --require ts-node/register --test-reporter spec --test tests/setup-gcloud.test.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/google-github-actions/setup-gcloud"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"google cloud",
|
|
"gcloud",
|
|
"sdk",
|
|
"cloud sdk",
|
|
"setup"
|
|
],
|
|
"author": "GoogleCloudPlatform",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@google-github-actions/actions-utils": "^0.4.10",
|
|
"@google-github-actions/setup-cloud-sdk": "^1.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.4",
|
|
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
|
"@typescript-eslint/parser": "^6.13.2",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"eslint": "^8.55.0",
|
|
"prettier": "^3.1.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|