mirror of
				https://code.forgejo.org/actions/cache.git
				synced 2025-11-04 06:19:11 +00:00 
			
		
		
		
	Merge pull request #651 from magnetikonline/fix-golang-windows-example
Fix Golang windows example - updated `README.md` test badge markdown.
This commit is contained in:
		
						commit
						deae296ab3
					
				
					 2 changed files with 10 additions and 11 deletions
				
			
		| 
						 | 
					@ -2,7 +2,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
This action allows caching dependencies and build outputs to improve workflow execution time.
 | 
					This action allows caching dependencies and build outputs to improve workflow execution time.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
<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>
 | 
					[](https://github.com/actions/cache/actions/workflows/workflow.yml)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Documentation
 | 
					## Documentation
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -88,7 +88,7 @@ Every programming language and framework has its own way of caching.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
See [Examples](examples.md) for a list of `actions/cache` implementations for use with:
 | 
					See [Examples](examples.md) for a list of `actions/cache` implementations for use with:
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- [C# - Nuget](./examples.md#c---nuget)
 | 
					- [C# - NuGet](./examples.md#c---nuget)
 | 
				
			||||||
- [D - DUB](./examples.md#d---dub)
 | 
					- [D - DUB](./examples.md#d---dub)
 | 
				
			||||||
- [Deno](./examples.md#deno)
 | 
					- [Deno](./examples.md#deno)
 | 
				
			||||||
- [Elixir - Mix](./examples.md#elixir---mix)
 | 
					- [Elixir - Mix](./examples.md#elixir---mix)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -33,8 +33,6 @@
 | 
				
			||||||
  - [Using pip to get cache location](#using-pip-to-get-cache-location)
 | 
					  - [Using pip to get cache location](#using-pip-to-get-cache-location)
 | 
				
			||||||
- [Python - pipenv](#python---pipenv)
 | 
					- [Python - pipenv](#python---pipenv)
 | 
				
			||||||
- [R - renv](#r---renv)
 | 
					- [R - renv](#r---renv)
 | 
				
			||||||
  - [Simple example](#simple-example-1)
 | 
					 | 
				
			||||||
  - [Multiple OS's in a workflow](#multiple-oss-in-a-workflow-1)
 | 
					 | 
				
			||||||
- [Ruby - Bundler](#ruby---bundler)
 | 
					- [Ruby - Bundler](#ruby---bundler)
 | 
				
			||||||
- [Rust - Cargo](#rust---cargo)
 | 
					- [Rust - Cargo](#rust---cargo)
 | 
				
			||||||
- [Scala - SBT](#scala---sbt)
 | 
					- [Scala - SBT](#scala---sbt)
 | 
				
			||||||
| 
						 | 
					@ -71,6 +69,7 @@ With `actions/cache@v2` you can now exclude unwanted packages with [exclude patt
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Or you could move the cache folder like below.
 | 
					Or you could move the cache folder like below.
 | 
				
			||||||
>Note: This workflow does not work for projects that require files to be placed in user profile package folder
 | 
					>Note: This workflow does not work for projects that require files to be placed in user profile package folder
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```yaml
 | 
					```yaml
 | 
				
			||||||
env:
 | 
					env:
 | 
				
			||||||
  NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
 | 
					  NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
 | 
				
			||||||
| 
						 | 
					@ -190,8 +189,8 @@ steps:
 | 
				
			||||||
- uses: actions/cache@v2
 | 
					- uses: actions/cache@v2
 | 
				
			||||||
  with:
 | 
					  with:
 | 
				
			||||||
    path: |
 | 
					    path: |
 | 
				
			||||||
      %LocalAppData%\go-build
 | 
					      ~\AppData\Local\go-build
 | 
				
			||||||
      ~/go/pkg/mod
 | 
					      ~\go\pkg\mod
 | 
				
			||||||
    key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
 | 
					    key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
 | 
				
			||||||
    restore-keys: |
 | 
					    restore-keys: |
 | 
				
			||||||
      ${{ runner.os }}-go-
 | 
					      ${{ runner.os }}-go-
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue