setup-gcloud/package.json
Google GitHub Actions Bot 26f734c277
Release: v3.0.0 (#726)
## What's Changed
- **‼️ This release requires Node 24+!**
- **‼️ The `skip_tool_cache` option has been removed!** Skipping the
tool cache is now the default behavior. To restore the previous behavior
of using the tool cache (which is unnecessary on GitHub managed runners,
but may provide performance increases on self-hosted runners), set
`cache: true`.
---
* Bump to node24 by @sethvargo in
https://github.com/google-github-actions/setup-gcloud/pull/723
* Do not use the tool-cache by default by @sethvargo in
https://github.com/google-github-actions/setup-gcloud/pull/724
* Update to use v3 references by @sethvargo in
https://github.com/google-github-actions/setup-gcloud/pull/725


**Full Changelog**:
https://github.com/google-github-actions/setup-gcloud/compare/v2.2.1...v3.0.0
2025-08-25 01:58:24 +00:00

53 lines
1.5 KiB
JSON

{
"name": "setup-gcloud",
"version": "3.0.0",
"description": "Setup gcloud GitHub action",
"main": "dist/main/index.js",
"scripts": {
"build": "ncc build -m src/main.ts",
"docs": "./node_modules/.bin/actions-gen-readme",
"format": "eslint . --fix",
"integration": "node --require ts-node/register --test-reporter spec --test tests/integration.test.ts",
"lint": "eslint .",
"test": "node --require ts-node/register --test-reporter spec --test tests/setup-gcloud.test.ts"
},
"engines": {
"node": ">= 24.x",
"npm": ">= 11.x"
},
"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.11.1",
"@actions/tool-cache": "^2.0.2",
"@google-github-actions/actions-utils": "^0.8.10",
"@google-github-actions/setup-cloud-sdk": "^2.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vercel/ncc": "^0.38.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint": "^9.34.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.40.0",
"typescript": "^5.9.2"
}
}