File tree Expand file tree Collapse file tree 11 files changed +19
-19
lines changed Expand file tree Collapse file tree 11 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 35
35
36
36
steps :
37
37
- name : Checkout repository
38
- uses : actions/checkout@v4
38
+ uses : actions/checkout@v5
39
39
with :
40
40
# We must fetch at least the immediate parents so that if this is
41
41
# a pull request then we can checkout the head.
Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
# Checkout should always be before setup-go to ensure caching is working
16
- - uses : actions/checkout@v4
16
+ - uses : actions/checkout@v5
17
17
with :
18
18
fetch-depth : 2
19
19
- uses : actions/setup-go@v5
Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ jobs:
12
12
environment : actions
13
13
steps :
14
14
- name : Check out the release tag
15
- uses : actions/checkout@v4
15
+ uses : actions/checkout@v5
16
16
with :
17
17
ref : ${{ github.event.release.tag_name }}
18
18
- name : Verify release commit
19
- run : | # Commit hash to compare with the commit returned by actions/checkout@v4 - Tag to compare with the latest release
19
+ run : | # Commit hash to compare with the commit returned by actions/checkout@v5 - Tag to compare with the latest release
20
20
echo "Checked out commit: $(git rev-parse HEAD)"
21
21
echo "Expected tag: ${{ github.event.release.tag_name }}"
22
22
- name : prepare temporary folder for build
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
# Checkout should always be before setup-go to ensure caching is working
15
- - uses : actions/checkout@v4
15
+ - uses : actions/checkout@v5
16
16
- uses : actions/setup-go@v5
17
17
with :
18
18
go-version : ' 1.24'
26
26
markdown-link-check :
27
27
runs-on : ubuntu-latest
28
28
steps :
29
- - uses : actions/checkout@v4
29
+ - uses : actions/checkout@v5
30
30
- uses : gaurav-nelson/github-action-markdown-link-check@1.0.16
31
31
with :
32
32
use-quiet-mode : ' yes'
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v4
13
+ uses : actions/checkout@v5
14
14
- name : Labeler
15
15
uses : actions/labeler@v5
16
16
with :
Original file line number Diff line number Diff line change 12
12
name : Github Actions lint
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v4
15
+ - uses : actions/checkout@v5
16
16
- name : Check workflow files
17
17
uses : docker://rhysd/actionlint:latest
18
18
with :
@@ -22,15 +22,15 @@ jobs:
22
22
name : dockerfile-lint
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - uses : actions/checkout@v4
25
+ - uses : actions/checkout@v5
26
26
- name : dockerfile-lint
27
27
run : docker build --check .
28
28
29
29
golangci :
30
30
name : golangci-lint
31
31
runs-on : ubuntu-latest
32
32
steps :
33
- - uses : actions/checkout@v4
33
+ - uses : actions/checkout@v5
34
34
- name : golangci-lint
35
35
uses : golangci/golangci-lint-action@v8
36
36
with :
Original file line number Diff line number Diff line change 54
54
steps :
55
55
# Checkout should always be before setup-go to ensure caching is working
56
56
- name : Checkout
57
- uses : actions/checkout@v4
57
+ uses : actions/checkout@v5
58
58
- name : Install Go
59
59
uses : actions/setup-go@v5
60
60
with :
96
96
steps :
97
97
# Checkout should always be before setup-go to ensure caching is working
98
98
- name : Checkout
99
- uses : actions/checkout@v4
99
+ uses : actions/checkout@v5
100
100
- name : Install Go
101
101
uses : actions/setup-go@v5
102
102
with :
Original file line number Diff line number Diff line change 12
12
steps :
13
13
# Checkout should always be before setup-go to ensure caching is working
14
14
- name : Checkout
15
- uses : actions/checkout@v4
15
+ uses : actions/checkout@v5
16
16
- name : Install Go
17
17
uses : actions/setup-go@v5
18
18
with :
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout
13
- uses : actions/checkout@v4
13
+ uses : actions/checkout@v5
14
14
with :
15
15
fetch-depth : 0
16
16
49
49
with :
50
50
version : 6.0.2
51
51
- name : Checkout
52
- uses : actions/checkout@v4
52
+ uses : actions/checkout@v5
53
53
with :
54
54
fetch-depth : 1
55
55
- name : Build
Original file line number Diff line number Diff line change 20
20
git config --global core.eol lf
21
21
# Checkout should always be before setup-go to ensure caching is working
22
22
- name : Checkout
23
- uses : actions/checkout@v4
23
+ uses : actions/checkout@v5
24
24
with :
25
25
fetch-depth : 1
26
26
- name : Install Go
41
41
steps :
42
42
# Checkout should always be before setup-go to ensure caching is working
43
43
- name : Checkout
44
- uses : actions/checkout@v4
44
+ uses : actions/checkout@v5
45
45
with :
46
46
fetch-depth : 1
47
47
- name : Install Go
59
59
runs-on : ubuntu-latest
60
60
steps :
61
61
- name : Checkout
62
- uses : actions/checkout@v4
62
+ uses : actions/checkout@v5
63
63
with :
64
64
fetch-depth : 1
65
65
- name : Build image in Docker
You can’t perform that action at this time.
0 commit comments