File tree 6 files changed +15
-15
lines changed
6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ jobs:
28
28
29
29
steps :
30
30
- name : Checkout repository
31
- uses : actions/checkout@v2
31
+ uses : actions/checkout@v4
32
32
with :
33
33
# We must fetch at least the immediate parents so that if this is
34
34
# a pull request then we can checkout the head.
35
35
fetch-depth : 2
36
36
37
37
# Initializes the CodeQL tools for scanning.
38
38
- name : Initialize CodeQL
39
- uses : github/codeql-action/init@v1
39
+ uses : github/codeql-action/init@v3
40
40
with :
41
41
languages : ${{ matrix.language }}
42
42
# If you wish to specify custom queries, you can do so here or in a config file.
47
47
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
48
48
# If this step fails, then you should remove it and run the build manually (see below)
49
49
- name : Autobuild
50
- uses : github/codeql-action/autobuild@v1
50
+ uses : github/codeql-action/autobuild@v3
51
51
52
52
# ℹ️ Command-line programs to run using the OS shell.
53
53
# 📚 https://git.io/JvXDl
61
61
# make release
62
62
63
63
- name : Perform CodeQL Analysis
64
- uses : github/codeql-action/analyze@v1
64
+ uses : github/codeql-action/analyze@v3
65
65
66
66
Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
steps :
15
15
- name : Check out code
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v4
17
17
- name : Docker meta
18
18
id : meta
19
19
uses : docker/metadata-action@v3
Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
matrix : ${{ steps.build.outputs.matrix }}
18
18
steps :
19
19
- name : Set up Go
20
- uses : actions/setup-go@v2
20
+ uses : actions/setup-go@v5
21
21
with :
22
22
go-version : ^1
23
23
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v4
25
25
name : Checkout
26
26
27
27
- name : Test
36
36
- name : Install packaging dependencies
37
37
run : |
38
38
gem install fpm package_cloud
39
- GO111MODULE=off go get github.com/mitchellh/gox
39
+ cd && go install github.com/mitchellh/gox@v1.0.1
40
40
41
41
- name : Build packages
42
42
id : build
56
56
57
57
- name : Artifact
58
58
id : artifact
59
- uses : actions/upload-artifact@v2
59
+ uses : actions/upload-artifact@v4
60
60
with :
61
61
name : packages
62
62
retention-days : 1
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ jobs:
20
20
steps :
21
21
22
22
- name : Set up Go
23
- uses : actions/setup-go@v2
23
+ uses : actions/setup-go@v5
24
24
with :
25
25
go-version : ${{ matrix.go }}
26
26
27
27
- name : Check out code
28
- uses : actions/checkout@v2
28
+ uses : actions/checkout@v4
29
29
30
30
- name : Start consul
31
31
run : |
Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ jobs:
22
22
steps :
23
23
24
24
- name : Set up Go
25
- uses : actions/setup-go@v2
25
+ uses : actions/setup-go@v5
26
26
with :
27
27
go-version : ${{ matrix.go }}
28
28
29
29
- name : Check out code
30
- uses : actions/checkout@v2
30
+ uses : actions/checkout@v4
31
31
32
32
- name : Checkout to the latest tag
33
33
run : |
@@ -108,7 +108,7 @@ jobs:
108
108
109
109
- name : Artifact
110
110
id : artifact
111
- uses : actions/upload-artifact@v2
111
+ uses : actions/upload-artifact@v4
112
112
with :
113
113
name : packages-${{ matrix.go }}
114
114
path : |
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ import (
39
39
)
40
40
41
41
// Version of graphite-clickhouse
42
- const Version = "0.13.4 "
42
+ const Version = "0.14.0 "
43
43
44
44
func init () {
45
45
scope .Version = Version
You can’t perform that action at this time.
0 commit comments