Skip to content

Commit 16044e9

Browse files
authored
Bump version to v0.14.0 (#290)
1 parent 443d3b4 commit 16044e9

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/codeql.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v4
3232
with:
3333
# We must fetch at least the immediate parents so that if this is
3434
# a pull request then we can checkout the head.
3535
fetch-depth: 2
3636

3737
# Initializes the CodeQL tools for scanning.
3838
- name: Initialize CodeQL
39-
uses: github/codeql-action/init@v1
39+
uses: github/codeql-action/init@v3
4040
with:
4141
languages: ${{ matrix.language }}
4242
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -47,7 +47,7 @@ jobs:
4747
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4848
# If this step fails, then you should remove it and run the build manually (see below)
4949
- name: Autobuild
50-
uses: github/codeql-action/autobuild@v1
50+
uses: github/codeql-action/autobuild@v3
5151

5252
# ℹ️ Command-line programs to run using the OS shell.
5353
# 📚 https://git.io/JvXDl
@@ -61,6 +61,6 @@ jobs:
6161
# make release
6262

6363
- name: Perform CodeQL Analysis
64-
uses: github/codeql-action/analyze@v1
64+
uses: github/codeql-action/analyze@v3
6565

6666

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Check out code
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
- name: Docker meta
1818
id: meta
1919
uses: docker/metadata-action@v3

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
matrix: ${{ steps.build.outputs.matrix }}
1818
steps:
1919
- name: Set up Go
20-
uses: actions/setup-go@v2
20+
uses: actions/setup-go@v5
2121
with:
2222
go-version: ^1
2323

24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
name: Checkout
2626

2727
- name: Test
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install packaging dependencies
3737
run: |
3838
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
4040
4141
- name: Build packages
4242
id: build
@@ -56,7 +56,7 @@ jobs:
5656
5757
- name: Artifact
5858
id: artifact
59-
uses: actions/upload-artifact@v2
59+
uses: actions/upload-artifact@v4
6060
with:
6161
name: packages
6262
retention-days: 1

.github/workflows/tests-sd.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
steps:
2121

2222
- name: Set up Go
23-
uses: actions/setup-go@v2
23+
uses: actions/setup-go@v5
2424
with:
2525
go-version: ${{ matrix.go }}
2626

2727
- name: Check out code
28-
uses: actions/checkout@v2
28+
uses: actions/checkout@v4
2929

3030
- name: Start consul
3131
run: |

.github/workflows/tests.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
steps:
2323

2424
- name: Set up Go
25-
uses: actions/setup-go@v2
25+
uses: actions/setup-go@v5
2626
with:
2727
go-version: ${{ matrix.go }}
2828

2929
- name: Check out code
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v4
3131

3232
- name: Checkout to the latest tag
3333
run: |
@@ -108,7 +108,7 @@ jobs:
108108
109109
- name: Artifact
110110
id: artifact
111-
uses: actions/upload-artifact@v2
111+
uses: actions/upload-artifact@v4
112112
with:
113113
name: packages-${{ matrix.go }}
114114
path: |

graphite-clickhouse.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import (
3939
)
4040

4141
// Version of graphite-clickhouse
42-
const Version = "0.13.4"
42+
const Version = "0.14.0"
4343

4444
func init() {
4545
scope.Version = Version

0 commit comments

Comments
 (0)