File tree Expand file tree Collapse file tree 7 files changed +17
-17
lines changed Expand file tree Collapse file tree 7 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 23
23
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24
24
# Only add triage labels if they are NOT a collaborator.
25
25
# This prevents the needs-triage label from being added.
26
- - uses : actions/checkout@v2
26
+ - uses : actions/checkout@v3
27
27
if : ${{ failure() }}
28
28
29
29
if : ${{ failure() }}
Original file line number Diff line number Diff line change 22
22
outputs :
23
23
go-version : ${{ steps.go-version.outputs.go-version }}
24
24
steps :
25
- - uses : actions/checkout@v2
25
+ - uses : actions/checkout@v3
26
26
# Read the .go-version file and output it for other jobs to use.
27
27
- id : go-version
28
28
run : echo "::set-output name=go-version::$(cat .go-version)"
35
35
- uses : actions/setup-go@v2
36
36
with :
37
37
go-version : ${{ needs.go-version.outputs.go-version }}
38
- - uses : actions/checkout@v2
38
+ - uses : actions/checkout@v3
39
39
# Cache the Go modules.
40
40
- uses : actions/cache@v2
41
41
with :
Original file line number Diff line number Diff line change 38
38
go-version : ${{ steps.go-version.outputs.go-version }}
39
39
steps :
40
40
# Check out the pull request code (as opposed to the target project).
41
- - uses : actions/checkout@v2
41
+ - uses : actions/checkout@v3
42
42
with :
43
43
ref : ${{ github.event.pull_request.head.sha }}
44
44
persist-credentials : false
72
72
go-version : ${{ needs.go-version.outputs.go-version }}
73
73
# Check out the target project (as opposed to the pull request code).
74
74
# Yes, this is intentional. We are using trusted code while working with the GitLab license.
75
- - uses : actions/checkout@v2
75
+ - uses : actions/checkout@v3
76
76
with :
77
77
ref : ${{ github.event.repository.default_branch }}
78
78
persist-credentials : false
84
84
# Check out the pull request code (as opposed to the target project).
85
85
# This overwrites the entire directory and deleted the unencrypted GitLab license file. The
86
86
# service has already started and continues using the license even though the file is deleted.
87
- - uses : actions/checkout@v2
87
+ - uses : actions/checkout@v3
88
88
with :
89
89
ref : ${{ github.event.pull_request.head.sha }}
90
90
persist-credentials : false
Original file line number Diff line number Diff line change 14
14
outputs :
15
15
go-version : ${{ steps.go-version.outputs.go-version }}
16
16
steps :
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v3
18
18
# Read the .go-version file and output it for other jobs to use.
19
19
- id : go-version
20
20
run : echo "::set-output name=go-version::$(cat .go-version)"
36
36
- uses : actions/setup-go@v2
37
37
with :
38
38
go-version : ${{ needs.go-version.outputs.go-version }}
39
- - uses : actions/checkout@v2
39
+ - uses : actions/checkout@v3
40
40
# Cache the Go modules and compiled tools for the specific lint target.
41
41
- uses : actions/cache@v2
42
42
with :
57
57
- uses : actions/setup-go@v2
58
58
with :
59
59
go-version : ${{ needs.go-version.outputs.go-version }}
60
- - uses : actions/checkout@v2
60
+ - uses : actions/checkout@v3
61
61
# Cache the Go modules.
62
62
- uses : actions/cache@v2
63
63
with :
Original file line number Diff line number Diff line change 13
13
labels :
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v3
17
17
- uses : actions/labeler@v3
18
18
with :
19
19
configuration-path : .github/labeler-pr-triage.yml
Original file line number Diff line number Diff line change 26
26
outputs :
27
27
go-version : ${{ steps.go-version.outputs.go-version }}
28
28
steps :
29
- - uses : actions/checkout@v2
29
+ - uses : actions/checkout@v3
30
30
# Read the .go-version file and output it for other jobs to use.
31
31
- id : go-version
32
32
run : echo "::set-output name=go-version::$(cat .go-version)"
48
48
- uses : actions/setup-go@v2
49
49
with :
50
50
go-version : ${{ needs.go-version.outputs.go-version }}
51
- - uses : actions/checkout@v2
51
+ - uses : actions/checkout@v3
52
52
# Cache the Go modules and compiled tools for the specific lint target.
53
53
- uses : actions/cache@v2
54
54
with :
69
69
- uses : actions/setup-go@v2
70
70
with :
71
71
go-version : ${{ needs.go-version.outputs.go-version }}
72
- - uses : actions/checkout@v2
72
+ - uses : actions/checkout@v3
73
73
# Cache the Go modules.
74
74
- uses : actions/cache@v2
75
75
with :
98
98
- uses : actions/setup-go@v2
99
99
with :
100
100
go-version : ${{ needs.go-version.outputs.go-version }}
101
- - uses : actions/checkout@v2
101
+ - uses : actions/checkout@v3
102
102
# Cache the Go modules.
103
103
- uses : actions/cache@v2
104
104
with :
@@ -118,7 +118,7 @@ jobs:
118
118
- uses : actions/setup-go@v2
119
119
with :
120
120
go-version : ${{ needs.go-version.outputs.go-version }}
121
- - uses : actions/checkout@v2
121
+ - uses : actions/checkout@v3
122
122
# Cache the Go modules.
123
123
- uses : actions/cache@v2
124
124
with :
Original file line number Diff line number Diff line change 20
20
outputs :
21
21
go-version : ${{ steps.go-version.outputs.go-version }}
22
22
steps :
23
- - uses : actions/checkout@v2
23
+ - uses : actions/checkout@v3
24
24
# Read the .go-version file and output it for other jobs to use.
25
25
- id : go-version
26
26
run : echo "::set-output name=go-version::$(cat .go-version)"
30
30
steps :
31
31
-
32
32
name : Checkout
33
- uses : actions/checkout@v2.4.0
33
+ uses : actions/checkout@v3
34
34
-
35
35
name : Unshallow
36
36
run : git fetch --prune --unshallow
You can’t perform that action at this time.
0 commit comments