This repository was archived by the owner on Nov 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
10
10
go : ["1.16.x", "1.17.x"]
11
11
fail-fast : false
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v3
14
14
with :
15
15
path : cache-go-action
16
- - uses : actions/setup-go@v2
16
+ - uses : actions/setup-go@v3
17
17
with :
18
18
go-version : ${{ matrix.go }}
19
19
- uses : ./cache-go-action
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 1.1.1] - 2022-12-05
10
+ ### Changed
11
+ - updated official GitHub actions from v2 to v3
12
+
9
13
## [ 1.1.0] - 2021-12-14
10
14
### Added
11
15
- input ` name ` which is going to be used as part of the cache keys
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ name: 'Cache Go'
2
2
description : ' Cache Go modules'
3
3
inputs :
4
4
name :
5
- description : ' The name that is going to be used as a part of the cache keys'
5
+ description : ' The name that is going to be used as a part of the cache keys'
6
6
required : true
7
7
default : ' go'
8
8
runs :
9
9
using : " composite"
10
10
steps :
11
11
- if : ${{ runner.os == 'Linux' }}
12
- uses : actions/cache@v2
12
+ uses : actions/cache@v3
13
13
with :
14
14
path : |
15
15
~/.cache/go-build
18
18
restore-keys : |
19
19
${{ runner.os }}-${{ inputs.name }}-
20
20
- if : ${{ runner.os == 'macOS' }}
21
- uses : actions/cache@v2
21
+ uses : actions/cache@v3
22
22
with :
23
23
path : |
24
24
~/Library/Caches/go-build
27
27
restore-keys : |
28
28
${{ runner.os }}-${{ inputs.name }}-
29
29
- if : ${{ runner.os == 'Windows' }}
30
- uses : actions/cache@v2
30
+ uses : actions/cache@v3
31
31
with :
32
32
path : |
33
33
%LocalAppData%\go-build
You can’t perform that action at this time.
0 commit comments