Skip to content

Commit 26f734c

Browse files
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 #723 * Do not use the tool-cache by default by @sethvargo in #724 * Update to use v3 references by @sethvargo in #725 **Full Changelog**: v2.2.1...v3.0.0
1 parent d26df95 commit 26f734c

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,10 @@ jobs:
102102
⚠️ You will not be able to install additional gcloud components, because the
103103
system installation is locked.
104104

105-
- <a name="__input_skip_tool_cache"></a><a href="#user-content-__input_skip_tool_cache"><code>skip_tool_cache</code></a>: _(Optional)_ Skip transferring the downloaded artifacts into the runner's tool cache.
106-
On GitHub-managed runners, this makes no difference since they are
107-
ephemeral. On self-hosted runners, this controls whether the downloads are
108-
cached stored on the disk.
109-
110-
For backwards-compatibility, this is is "false" by default. Setting the
111-
value to "true" can significantly speed up installation times.
105+
- <a name="__input_cache"></a><a href="#user-content-__input_cache"><code>cache</code></a>: _(Optional)_ Transfer the downloaded artifacts into the runner's tool cache. On
106+
GitHub-managed runners, this have very little impact since runneres are
107+
ephemeral. On self-hosted runners, this could improve future runs by
108+
skipping future gcloud installations.
112109

113110

114111
<!-- END_AUTOGEN_INPUTS -->

dist/index.js

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

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": "setup-gcloud",
3-
"version": "2.2.1",
3+
"version": "3.0.0",
44
"description": "Setup gcloud GitHub action",
55
"main": "dist/main/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)