Skip to content

Commit 0389721

Browse files
author
Piotr Andruszkiewicz
committed
Update GitHub Actions to use latest versions of cache, setup-go, and checkout actions
1 parent 7f18fed commit 0389721

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
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Cache Go modules
22-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2323
with:
2424
path: |
2525
~/.cache/go-build
@@ -29,13 +29,13 @@ jobs:
2929
${{ runner.os }}-go-
3030
3131
- name: Set up Go
32-
uses: actions/setup-go@v2
32+
uses: actions/setup-go@v5
3333
with:
3434
go-version: '1.20'
3535
id: go
3636

3737
- name: Checkout source code
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
- name: Run build
4141
run: make

0 commit comments

Comments
 (0)