mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-21 22:29:22 +00:00
## What's Changed * Fix docs about component installation for system-provided by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/615 * chore: update dependencies (automated) by @verbanicm in https://github.com/google-github-actions/setup-gcloud/pull/623 * Switch to pull non-secret values from env by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/624 * Drop example workflows by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/627 * Add warning about `skip_install` by @ethanmdavidson in https://github.com/google-github-actions/setup-gcloud/pull/630 * chore(deps): bump yaml from 2.2.1 to 2.2.2 by @dependabot in https://github.com/google-github-actions/setup-gcloud/pull/629 * Update README.md by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/631 * Add support note by @sethvargo in https://github.com/google-github-actions/setup-gcloud/pull/634 * chore: update dependencies (automated) by @verbanicm in https://github.com/google-github-actions/setup-gcloud/pull/637 ## New Contributors * @ethanmdavidson made their first contribution in https://github.com/google-github-actions/setup-gcloud/pull/630 **Full Changelog**: https://github.com/google-github-actions/setup-gcloud/compare/v1.1.0...4d18d8ee1f5c7c0da343a1b74149f7c90fedb51c
51 lines
1.4 KiB
JSON
51 lines
1.4 KiB
JSON
{
|
|
"name": "setup-gcloud",
|
|
"version": "1.1.1",
|
|
"description": "Setup gcloud GitHub action",
|
|
"main": "dist/main/index.js",
|
|
"scripts": {
|
|
"build": "ncc build -m src/main.ts -o dist/main",
|
|
"format": "prettier --write **/*.ts",
|
|
"integration": "mocha -r ts-node/register -t 180s 'tests/integration/*.test.ts'",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"test": "mocha -r ts-node/register -t 180s 'tests/*.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.0",
|
|
"@actions/tool-cache": "^2.0.1",
|
|
"@google-github-actions/actions-utils": "^0.4.8",
|
|
"@google-github-actions/setup-cloud-sdk": "^1.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.3.5",
|
|
"@types/mocha": "^10.0.1",
|
|
"@types/node": "^20.1.0",
|
|
"@types/sinon": "^10.0.14",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
"@typescript-eslint/parser": "^5.59.2",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"chai": "^4.3.7",
|
|
"eslint": "^8.40.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"mocha": "^10.2.0",
|
|
"prettier": "^2.8.8",
|
|
"sinon": "^15.0.4",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|