Skip to content

Commit 1db8166

Browse files
committed
remotecache: proper exporter naming for gha, s3 and azblob
Signed-off-by: CrazyMax <[email protected]>
1 parent cf4e1bb commit 1db8166

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cache/remotecache/azblob/exporter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ type exporter struct {
5454
}
5555

5656
func (ce *exporter) Name() string {
57-
return "exporting cache to azure blob store"
57+
return "exporting cache to Azure Blob Storage"
5858
}
5959

6060
func (ce *exporter) Finalize(ctx context.Context) (map[string]string, error) {

cache/remotecache/gha/gha.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func NewExporter(c *Config) (remotecache.Exporter, error) {
9191
}
9292

9393
func (*exporter) Name() string {
94-
return "exporting to GitHub cache"
94+
return "exporting to GitHub Actions Cache"
9595
}
9696

9797
func (ce *exporter) Config() remotecache.Config {

cache/remotecache/s3/s3.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ type exporter struct {
162162
}
163163

164164
func (*exporter) Name() string {
165-
return "exporting cache to s3"
165+
return "exporting cache to Amazon S3"
166166
}
167167

168168
func (e *exporter) Config() remotecache.Config {

0 commit comments

Comments
 (0)