@@ -22,15 +22,15 @@ jobs:
22
22
runs-on : ${{ matrix.platform }}
23
23
steps :
24
24
- name : Checkout code
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
with :
27
27
fetch-depth : 0
28
28
- name : Get the k6 version
29
29
id : get_k6_version
30
30
run : |
31
31
echo "Running tests on '${GITHUB_REF}' with '$(git describe --tags --always --long --dirty)' checked out..."
32
32
- name : Install Go
33
- uses : actions/setup-go@v3
33
+ uses : actions/setup-go@v5
34
34
with :
35
35
go-version : ${{ matrix.go-version }}
36
36
check-latest : true
46
46
continue-on-error : true
47
47
steps :
48
48
- name : Checkout code
49
- uses : actions/checkout@v3
49
+ uses : actions/checkout@v4
50
50
- name : Install Go
51
- uses : actions/setup-go@v3
51
+ uses : actions/setup-go@v5
52
52
with :
53
53
go-version : 1.x
54
54
check-latest : true
77
77
runs-on : ${{ matrix.platform }}
78
78
steps :
79
79
- name : Checkout code
80
- uses : actions/checkout@v3
80
+ uses : actions/checkout@v4
81
81
- name : Install Go
82
- uses : actions/setup-go@v3
82
+ uses : actions/setup-go@v5
83
83
with :
84
84
go-version : ${{ matrix.go-version }}
85
85
check-latest : true
@@ -101,7 +101,7 @@ jobs:
101
101
- name : Generate coverage HTML report
102
102
run : go tool cover -html=coverage.txt -o coverage.html
103
103
- name : Upload coverage report
104
- uses : actions/upload-artifact@v2
104
+ uses : actions/upload-artifact@v4
105
105
with :
106
106
name : test-coverage-report-${{ matrix.platform }}
107
107
path : coverage.html
@@ -115,9 +115,9 @@ jobs:
115
115
runs-on : ${{ matrix.platform }}
116
116
steps :
117
117
- name : Checkout code
118
- uses : actions/checkout@v3
118
+ uses : actions/checkout@v4
119
119
- name : Install Go
120
- uses : actions/setup-go@v3
120
+ uses : actions/setup-go@v5
121
121
with :
122
122
go-version : ${{ matrix.go-version }}
123
123
check-latest : true
0 commit comments