@@ -21,21 +21,21 @@ jobs:
21
21
run : git config --global core.autocrlf false
22
22
23
23
- name : Check out code into the Go module directory
24
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v4
25
25
26
26
# Increase the pagefile size on Windows to aviod running out of memory
27
27
- name : Increase pagefile size on Windows
28
28
if : runner.os == 'Windows'
29
29
run : powershell -command .github\workflows\SetPageFileSize.ps1
30
30
31
31
- name : Setup Go
32
- uses : actions/setup-go@v2
32
+ uses : actions/setup-go@v5
33
33
with :
34
34
go-version : 1.23
35
35
36
36
# Source: https://github.com/actions/cache/blob/main/examples.md#go---modules
37
37
- name : Go Cache
38
- uses : actions/cache@v2
38
+ uses : actions/cache@v4
39
39
with :
40
40
path : ~/go/pkg/mod
41
41
key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -51,12 +51,12 @@ jobs:
51
51
name : Fast stability tests, ${{ github.head_ref }}
52
52
steps :
53
53
- name : Setup Go
54
- uses : actions/setup-go@v2
54
+ uses : actions/setup-go@v5
55
55
with :
56
56
go-version : 1.23
57
57
58
58
- name : Checkout
59
- uses : actions/checkout@v2
59
+ uses : actions/checkout@v4
60
60
with :
61
61
fetch-depth : 0
62
62
@@ -75,10 +75,10 @@ jobs:
75
75
name : Produce code coverage
76
76
steps :
77
77
- name : Check out code into the Go module directory
78
- uses : actions/checkout@v2
78
+ uses : actions/checkout@v4
79
79
80
80
- name : Setup Go
81
- uses : actions/setup-go@v2
81
+ uses : actions/setup-go@v5
82
82
with :
83
83
go-version : 1.23
84
84
0 commit comments