Skip to content

Commit c80c9f7

Browse files
committed
fix: tools versions
1 parent ff6cfc5 commit c80c9f7

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go 1.x
2323
uses: actions/setup-go@v2
2424
with:
25-
go-version: ^1.15
25+
go-version: ^1.18
2626
id: go
2727

2828
- name: Check out code into the Go module directory

.github/workflows/master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Set up Go 1.x
2727
uses: actions/setup-go@v2
2828
with:
29-
go-version: ^1.15
29+
go-version: ^1.18
3030
id: go
3131

3232
- name: Check out code into the Go module directory
@@ -54,7 +54,7 @@ jobs:
5454
- name: Set up Go 1.x
5555
uses: actions/setup-go@v2
5656
with:
57-
go-version: ^1.15
57+
go-version: ^1.18
5858
id: go
5959

6060
- name: Check out code into the Go module directory
@@ -86,7 +86,7 @@ jobs:
8686
- name: Set up Go 1.x
8787
uses: actions/setup-go@v2
8888
with:
89-
go-version: ^1.15
89+
go-version: ^1.18
9090
id: go
9191

9292
- name: Check out code into the Go module directory

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Go 1.x
1919
uses: actions/setup-go@v2
2020
with:
21-
go-version: ^1.15
21+
go-version: ^1.18
2222
id: go
2323

2424
- name: Check out code into the Go module directory
@@ -41,7 +41,7 @@ jobs:
4141
- name: Set up Go 1.x
4242
uses: actions/setup-go@v2
4343
with:
44-
go-version: ^1.15
44+
go-version: ^1.18
4545
id: go
4646

4747
- name: Check out code into the Go module directory
@@ -73,7 +73,7 @@ jobs:
7373
- name: Set up Go 1.x
7474
uses: actions/setup-go@v2
7575
with:
76-
go-version: ^1.15
76+
go-version: ^1.18
7777
id: go
7878

7979
- name: Check out code into the Go module directory
@@ -156,7 +156,7 @@ jobs:
156156
- name: Set up Go 1.x
157157
uses: actions/setup-go@v2
158158
with:
159-
go-version: ^1.15
159+
go-version: ^1.18
160160
id: go
161161

162162
- name: Check out code into the Go module directory

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ include Makefile.common
1818

1919
DOCKER_IMAGE_NAME ?= aws-cloudwatch-exporter
2020

21-
GOLANGCI_LINT_VERSION ?= v1.27.0
21+
GOLANGCI_LINT_VERSION ?= v1.46.2

Makefile.common

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ ifneq ($(shell which gotestsum),)
7878
endif
7979
endif
8080

81-
PROMU_VERSION ?= 0.5.0
81+
PROMU_VERSION ?= 0.13.0
8282
PROMU_URL := https://github.com/prometheus/promu/releases/download/v$(PROMU_VERSION)/promu-$(PROMU_VERSION).$(GO_BUILD_PLATFORM).tar.gz
8383

8484
GOLANGCI_LINT :=
8585
GOLANGCI_LINT_OPTS ?=
86-
GOLANGCI_LINT_VERSION ?= v1.18.0
86+
GOLANGCI_LINT_VERSION ?= v1.46.2
8787
# golangci-lint only supports linux, darwin and windows platforms on i386/amd64.
8888
# windows isn't included here because of the path separator being different.
8989
ifeq ($(GOHOSTOS),$(filter $(GOHOSTOS),linux darwin))

0 commit comments

Comments
 (0)