Skip to content

Commit 0019ea5

Browse files
committed
upgraded the go action
Signed-off-by: Dmitry Ledentsov <[email protected]>
1 parent ced493c commit 0019ea5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
steps:
1212
- name: Install Go
13-
uses: actions/setup-go@v2
13+
uses: actions/setup-go@v3
1414
with:
1515
go-version: ${{ matrix.go-version }}
1616
- name: Checkout code
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v3
1818
- name: Go Fmt
1919
run: go fmt ./...
2020
- name: Test
2121
run: go test ./...
22-
- uses: actions/cache@v2
22+
- uses: actions/cache@v3
2323
with:
2424
path: ~/go/pkg/mod
2525
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)