File tree Expand file tree Collapse file tree 5 files changed +171
-135
lines changed Expand file tree Collapse file tree 5 files changed +171
-135
lines changed Original file line number Diff line number Diff line change @@ -46,24 +46,28 @@ jobs:
46
46
uses : ' ./'
47
47
with :
48
48
skip_install : true
49
+ skip_tool_cache : true
49
50
50
51
# Constraint installation
51
52
- name : ' Install constraint'
52
53
uses : ' ./'
53
54
with :
54
55
version : ' >= 1.0.0'
56
+ skip_tool_cache : true
55
57
56
58
# Default installation
57
59
- name : ' Install version'
58
60
uses : ' ./'
59
61
with :
60
62
version : ' 374.0.0'
63
+ skip_tool_cache : true
61
64
62
65
# Latest installation
63
66
- name : ' Install latest'
64
67
uses : ' ./'
65
68
with :
66
69
version : ' latest'
70
+ skip_tool_cache : true
67
71
68
72
# By default, there is no configuration
69
73
- name : ' Check defaults'
77
81
uses : ' ./'
78
82
with :
79
83
install_components : ' cloud-run-proxy'
84
+ skip_tool_cache : true
80
85
81
86
- name : ' Check components'
82
87
run : ' npm run integration'
88
93
uses : ' ./'
89
94
with :
90
95
project_id : ' ${{ vars.PROJECT_ID }}'
96
+ skip_tool_cache : true
91
97
92
98
- name : ' Check project ID'
93
99
run : ' npm run integration'
@@ -103,6 +109,8 @@ jobs:
103
109
104
110
- name : ' Setup gcloud with WIF'
105
111
uses : ' ./'
112
+ with :
113
+ skip_tool_cache : true
106
114
107
115
- name : ' Check WIF authentication'
108
116
run : ' npm run integration'
@@ -118,6 +126,8 @@ jobs:
118
126
119
127
- name : ' Setup gcloud with SAKE'
120
128
uses : ' ./'
129
+ with :
130
+ skip_tool_cache : true
121
131
122
132
- name : ' Check SAKE authentication'
123
133
run : ' npm run integration'
Original file line number Diff line number Diff line change @@ -77,6 +77,18 @@ inputs:
77
77
default : false
78
78
required : false
79
79
80
+ skip_tool_cache :
81
+ description : |-
82
+ Skip transferring the downloaded artifacts into the runner's tool cache.
83
+ On GitHub-managed runners, this makes no difference since they are
84
+ ephemeral. On self-hosted runners, this controls whether the downloads are
85
+ cached stored on the disk.
86
+
87
+ For backwards-compatibility, this is is "false" by default. Setting the
88
+ value to "true" can significantly speed up installation times.
89
+ default : false
90
+ required : false
91
+
80
92
outputs :
81
93
version :
82
94
description : |-
You can’t perform that action at this time.
0 commit comments