Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit 5ce5516

Browse files
authored
Merge pull request #3 from protocol/update-deps
chore: update official GitHub actions
2 parents c0d7bae + 4dd82b6 commit 5ce5516

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
go: ["1.16.x", "1.17.x"]
1111
fail-fast: false
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
with:
1515
path: cache-go-action
16-
- uses: actions/setup-go@v2
16+
- uses: actions/setup-go@v3
1717
with:
1818
go-version: ${{ matrix.go }}
1919
- uses: ./cache-go-action

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.1.1] - 2022-12-05
10+
### Changed
11+
- updated official GitHub actions from v2 to v3
12+
913
## [1.1.0] - 2021-12-14
1014
### Added
1115
- input `name` which is going to be used as part of the cache keys

action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: 'Cache Go'
22
description: 'Cache Go modules'
33
inputs:
44
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'
66
required: true
77
default: 'go'
88
runs:
99
using: "composite"
1010
steps:
1111
- if: ${{ runner.os == 'Linux' }}
12-
uses: actions/cache@v2
12+
uses: actions/cache@v3
1313
with:
1414
path: |
1515
~/.cache/go-build
@@ -18,7 +18,7 @@ runs:
1818
restore-keys: |
1919
${{ runner.os }}-${{ inputs.name }}-
2020
- if: ${{ runner.os == 'macOS' }}
21-
uses: actions/cache@v2
21+
uses: actions/cache@v3
2222
with:
2323
path: |
2424
~/Library/Caches/go-build
@@ -27,7 +27,7 @@ runs:
2727
restore-keys: |
2828
${{ runner.os }}-${{ inputs.name }}-
2929
- if: ${{ runner.os == 'Windows' }}
30-
uses: actions/cache@v2
30+
uses: actions/cache@v3
3131
with:
3232
path: |
3333
%LocalAppData%\go-build

0 commit comments

Comments
 (0)