Skip to content

Commit 5f004e9

Browse files
Release: v1.2.2 (#349)
## What's Changed * Allow newer npm version by @sethvargo in #345 * Update gcloud versions by @google-github-actions-bot in #346 * Update gcloud versions by @google-github-actions-bot in #347 * Update deps by @sethvargo in #348 **Full Changelog**: v1.2.1...v1.2.2
1 parent 80b796e commit 5f004e9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15766,7 +15766,7 @@ function blockString({ comment, type, value }, ctx, onComment, onChompKeep) {
1576615766
const { blockQuote, commentString, lineWidth } = ctx.options;
1576715767
// 1. Block can't end in whitespace unless the last line is non-empty.
1576815768
// 2. Strings consisting of only whitespace are best rendered explicitly.
15769-
if (!blockQuote || /\n[\t ]+$/.test(value) || /^\s*$/.test(value)) {
15769+
if (!blockQuote || /\n[\t ]+$/.test(value)) {
1577015770
return quotedString(value, ctx);
1577115771
}
1577215772
const indent = ctx.indent ||
@@ -43928,7 +43928,7 @@ module.exports = parseParams
4392843928
/***/ ((module) => {
4392943929

4393043930
"use strict";
43931-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@google-github-actions/setup-cloud-sdk","version":"1.2.1","description":"Utilities to download, install, and interact with the Cloud SDK for GitHub Actions","module":"dist/index.js","main":"dist/index.js","types":"dist/index.d.js","engines":{"node":"20.x","npm":"10.x"},"scripts":{"build":"rm -rf dist/ && ncc build --source-map --no-source-map-register src/index.ts","lint":"eslint .","format":"eslint --fix","docs":"rm -rf docs/ && typedoc --plugin typedoc-plugin-markdown","test":"node --require ts-node/register --test-reporter spec --test tests/download-util.test.ts tests/format-url.test.ts tests/index.test.ts"},"files":["dist/**/*"],"repository":{"type":"git","url":"git+https://github.com/google-github-actions/setup-cloud-sdk.git"},"keywords":["Cloud SDK","google cloud","gcloud"],"author":"Google LLC","license":"Apache-2.0","dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.1.1","@actions/http-client":"^2.2.3","@actions/tool-cache":"^2.0.2","@google-github-actions/actions-utils":"^0.8.8","semver":"^7.7.2"},"devDependencies":{"@eslint/eslintrc":"^3.3.1","@eslint/js":"^9.31.0","@types/node":"^24.0.14","@types/semver":"^7.7.0","@typescript-eslint/eslint-plugin":"^8.37.0","@vercel/ncc":"^0.38.3","eslint-config-prettier":"^10.1.5","eslint-plugin-prettier":"^5.5.1","eslint":"^9.31.0","prettier":"^3.6.2","ts-node":"^10.9.2","typedoc-plugin-markdown":"^4.7.0","typedoc":"^0.28.7","typescript-eslint":"^8.37.0","typescript":"^5.8.3"}}');
43931+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@google-github-actions/setup-cloud-sdk","version":"1.2.2","description":"Utilities to download, install, and interact with the Cloud SDK for GitHub Actions","module":"dist/index.js","main":"dist/index.js","types":"dist/index.d.js","engines":{"node":">= 20.x","npm":">= 10.x"},"scripts":{"build":"rm -rf dist/ && ncc build --source-map --no-source-map-register src/index.ts","lint":"eslint .","format":"eslint --fix","docs":"rm -rf docs/ && typedoc --plugin typedoc-plugin-markdown","test":"node --require ts-node/register --test-reporter spec --test tests/download-util.test.ts tests/format-url.test.ts tests/index.test.ts"},"files":["dist/**/*"],"repository":{"type":"git","url":"git+https://github.com/google-github-actions/setup-cloud-sdk.git"},"keywords":["Cloud SDK","google cloud","gcloud"],"author":"Google LLC","license":"Apache-2.0","dependencies":{"@actions/core":"^1.11.1","@actions/exec":"^1.1.1","@actions/http-client":"^2.2.3","@actions/tool-cache":"^2.0.2","@google-github-actions/actions-utils":"^0.8.9","semver":"^7.7.2"},"devDependencies":{"@eslint/eslintrc":"^3.3.1","@eslint/js":"^9.34.0","@types/node":"^24.3.0","@types/semver":"^7.7.0","@typescript-eslint/eslint-plugin":"^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","typedoc-plugin-markdown":"^4.8.1","typedoc":"^0.28.10","typescript-eslint":"^8.40.0","typescript":"^5.9.2"}}');
4393243932

4393343933
/***/ })
4393443934

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index/functions/computeGcloudVersion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[@google-github-actions/setup-cloud-sdk](../../modules.md) / [index](../README.md) / computeGcloudVersion
66

7-
# Function: ~~computeGcloudVersion()~~
7+
# ~~Function: computeGcloudVersion()~~
88

99
> **computeGcloudVersion**(`version?`): `Promise`\<`string`\>
1010

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-github-actions/setup-cloud-sdk",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Utilities to download, install, and interact with the Cloud SDK for GitHub Actions",
55
"module": "dist/index.js",
66
"main": "dist/index.js",

0 commit comments

Comments
 (0)