File tree 3 files changed +10
-19
lines changed
3 files changed +10
-19
lines changed Original file line number Diff line number Diff line change @@ -9,41 +9,32 @@ shared_configs:
9
9
# Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
10
10
version : 2.1
11
11
jobs :
12
- build-1-19 :
12
+ build-1-21 :
13
13
working_directory : ~/repo
14
14
docker :
15
- - image : cimg/go:1.19
15
+ - image : cimg/go:1.21
16
16
steps : *simple_job_steps
17
17
18
- build-1-20 :
18
+ build-1-22 :
19
19
working_directory : ~/repo
20
20
docker :
21
- - image : cimg/go:1.20
21
+ - image : cimg/go:1.22
22
22
steps : *simple_job_steps
23
23
24
- build-1-21 :
24
+ build-1-23 :
25
25
working_directory : ~/repo
26
26
docker :
27
- - image : cimg/go:1.21
27
+ - image : cimg/go:1.23
28
28
steps :
29
29
- checkout
30
30
- run :
31
31
name : Run tests and linters
32
32
command : |
33
33
make ci
34
34
35
- # TODO: Need updates to some static analyzer tools to support 1.22. After those
36
- # are updated, move the full linting from 1.21 to this latest release.
37
- build-1-22 :
38
- working_directory : ~/repo
39
- docker :
40
- - image : cimg/go:1.22
41
- steps : *simple_job_steps
42
-
43
35
workflows :
44
36
pr-build-test :
45
37
jobs :
46
- - build-1-19
47
- - build-1-20
48
38
- build-1-21
49
39
- build-1-22
40
+ - build-1-23
Original file line number Diff line number Diff line change 1
- FROM golang:1.21 -alpine as builder
1
+ FROM golang:1.23 -alpine as builder
2
2
MAINTAINER Fullstory Engineering
3
3
4
4
# create non-privileged group and user
Original file line number Diff line number Diff line change 67
67
68
68
.PHONY : staticcheck
69
69
staticcheck :
70
- @go install honnef.co/go/tools/cmd/staticcheck@v0.4.3
70
+ @go install honnef.co/go/tools/cmd/staticcheck@v0.5.1
71
71
staticcheck ./...
72
72
73
73
.PHONY : ineffassign
@@ -77,7 +77,7 @@ ineffassign:
77
77
78
78
.PHONY : predeclared
79
79
predeclared :
80
- @go install github.com/nishanths/predeclared@5f2f810c9ae6
80
+ @go install github.com/nishanths/predeclared@245576f9a85c
81
81
predeclared ./...
82
82
83
83
# Intentionally omitted from CI, but target here for ad-hoc reports.
You can’t perform that action at this time.
0 commit comments