Skip to content

Commit deae296

Browse files
author
Vipul
authored
Merge pull request #651 from magnetikonline/fix-golang-windows-example
Fix Golang windows example - updated `README.md` test badge markdown.
2 parents c7c46bc + 6535c5f commit deae296

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
This action allows caching dependencies and build outputs to improve workflow execution time.
44

5-
<a href="https://github.com/actions/cache/actions?query=workflow%3ATests"><img alt="GitHub Actions status" src="https://github.com/actions/cache/workflows/Tests/badge.svg?branch=main&event=push"></a>
5+
[![Tests](https://github.com/actions/cache/actions/workflows/workflow.yml/badge.svg)](https://github.com/actions/cache/actions/workflows/workflow.yml)
66

77
## Documentation
88

99
See ["Caching dependencies to speed up workflows"](https://help.github.com/github/automating-your-workflow-with-github-actions/caching-dependencies-to-speed-up-workflows).
1010

1111
## What's New
1212

13-
* Added support for multiple paths, [glob patterns](https://github.com/actions/toolkit/tree/main/packages/glob), and single file caches.
13+
* Added support for multiple paths, [glob patterns](https://github.com/actions/toolkit/tree/main/packages/glob), and single file caches.
1414

1515
```yaml
1616
- name: Cache multiple paths
@@ -38,7 +38,7 @@ If you are using this inside a container, a POSIX-compliant `tar` needs to be in
3838

3939
### Inputs
4040

41-
* `path` - A list of files, directories, and wildcard patterns to cache and restore. See [`@actions/glob`](https://github.com/actions/toolkit/tree/main/packages/glob) for supported patterns.
41+
* `path` - A list of files, directories, and wildcard patterns to cache and restore. See [`@actions/glob`](https://github.com/actions/toolkit/tree/main/packages/glob) for supported patterns.
4242
* `key` - An explicit key for restoring and saving the cache
4343
* `restore-keys` - An ordered list of keys to use for restoring the cache if no cache hit occurred for key
4444

@@ -49,7 +49,7 @@ If you are using this inside a container, a POSIX-compliant `tar` needs to be in
4949
> See [Skipping steps based on cache-hit](#Skipping-steps-based-on-cache-hit) for info on using this output
5050

5151
### Cache scopes
52-
The cache is scoped to the key and branch. The default branch cache is available to other branches.
52+
The cache is scoped to the key and branch. The default branch cache is available to other branches.
5353

5454
See [Matching a cache key](https://help.github.com/en/actions/configuring-and-managing-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key) for more info.
5555

@@ -88,7 +88,7 @@ Every programming language and framework has its own way of caching.
8888

8989
See [Examples](examples.md) for a list of `actions/cache` implementations for use with:
9090

91-
- [C# - Nuget](./examples.md#c---nuget)
91+
- [C# - NuGet](./examples.md#c---nuget)
9292
- [D - DUB](./examples.md#d---dub)
9393
- [Deno](./examples.md#deno)
9494
- [Elixir - Mix](./examples.md#elixir---mix)
@@ -121,9 +121,9 @@ For example, using the [`hashFiles`](https://help.github.com/en/actions/referenc
121121
```yaml
122122
- uses: actions/cache@v2
123123
with:
124-
path: |
124+
path: |
125125
path/to/dependencies
126-
some/other/dependencies
126+
some/other/dependencies
127127
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
128128
```
129129

examples.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
- [Using pip to get cache location](#using-pip-to-get-cache-location)
3434
- [Python - pipenv](#python---pipenv)
3535
- [R - renv](#r---renv)
36-
- [Simple example](#simple-example-1)
37-
- [Multiple OS's in a workflow](#multiple-oss-in-a-workflow-1)
3836
- [Ruby - Bundler](#ruby---bundler)
3937
- [Rust - Cargo](#rust---cargo)
4038
- [Scala - SBT](#scala---sbt)
@@ -71,6 +69,7 @@ With `actions/cache@v2` you can now exclude unwanted packages with [exclude patt
7169

7270
Or you could move the cache folder like below.
7371
>Note: This workflow does not work for projects that require files to be placed in user profile package folder
72+
7473
```yaml
7574
env:
7675
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
@@ -190,8 +189,8 @@ steps:
190189
- uses: actions/cache@v2
191190
with:
192191
path: |
193-
%LocalAppData%\go-build
194-
~/go/pkg/mod
192+
~\AppData\Local\go-build
193+
~\go\pkg\mod
195194
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
196195
restore-keys: |
197196
${{ runner.os }}-go-

0 commit comments

Comments
 (0)