File tree 5 files changed +13
-11
lines changed
5 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,13 @@ jobs:
37
37
# Install Go!
38
38
- uses : actions/setup-go@v3
39
39
with :
40
- go-version : " ~1.23 "
40
+ go-version : " ~1.24 "
41
41
42
42
# Check for Go linting errors!
43
43
- name : Lint Go
44
44
45
45
with :
46
- version : v1.62.2
46
+ version : v1.64.8
47
47
args : " --out-${NO_FUTURE}format colored-line-number"
48
48
49
49
- name : Lint shell scripts
98
98
99
99
- uses : actions/setup-go@v3
100
100
with :
101
- go-version : " ~1.23 "
101
+ go-version : " ~1.24 "
102
102
103
103
# Sadly the new "set output" syntax (of writing env vars to
104
104
# $GITHUB_OUTPUT) does not work on both powershell and bash so we use the
@@ -136,7 +136,7 @@ jobs:
136
136
137
137
- uses : actions/setup-go@v3
138
138
with :
139
- go-version : " ~1.23 "
139
+ go-version : " ~1.24 "
140
140
141
141
# Sadly the new "set output" syntax (of writing env vars to
142
142
# $GITHUB_OUTPUT) does not work on both powershell and bash so we use the
@@ -170,7 +170,7 @@ jobs:
170
170
- uses : actions/checkout@v3
171
171
- uses : actions/setup-go@v3
172
172
with :
173
- go-version : " ~1.23 "
173
+ go-version : " ~1.24 "
174
174
175
175
- name : Go Cache Paths
176
176
id : go-cache-paths
@@ -223,7 +223,7 @@ jobs:
223
223
- name : Setup Go
224
224
uses : actions/setup-go@v3
225
225
with :
226
- go-version : " ~1.23 "
226
+ go-version : " ~1.24 "
227
227
228
228
- name : Go Cache Paths
229
229
id : go-cache-paths
@@ -262,7 +262,7 @@ jobs:
262
262
263
263
- uses : actions/setup-go@v3
264
264
with :
265
- go-version : " ~1.23 "
265
+ go-version : " ~1.24 "
266
266
267
267
- name : build image
268
268
run : make -j build/image/envbox
Original file line number Diff line number Diff line change 57
57
58
58
- uses : actions/setup-go@v3
59
59
with :
60
- go-version : " ~1.23 "
60
+ go-version : " ~1.24 "
61
61
62
62
- name : Go Cache Paths
63
63
id : go-cache-paths
Original file line number Diff line number Diff line change 202
202
concurrency : 4
203
203
skip-dirs :
204
204
- node_modules
205
+ - cli/cliflag
205
206
skip-files :
206
207
- scripts/rules.go
207
208
timeout : 5m
@@ -218,7 +219,6 @@ linters:
218
219
- errcheck
219
220
- errname
220
221
- errorlint
221
- - exportloopref
222
222
- forcetypeassert
223
223
- gocritic
224
224
- gocyclo
Original file line number Diff line number Diff line change 1
1
module github.com/coder/envbox
2
2
3
- go 1.23.3
3
+ go 1.24.1
4
+
4
5
// There are a few minor changes we make to Tailscale that we're slowly upstreaming. Compare here:
5
6
// https://github.com/tailscale/tailscale/compare/main...coder:tailscale:main
6
7
replace tailscale.com => github.com/coder/tailscale v1.1.1-0.20240702054557-aa558fbe5374
Original file line number Diff line number Diff line change 5
5
"os"
6
6
"time"
7
7
8
- "github.com/coder/envbox/xunix"
9
8
"golang.org/x/xerrors"
9
+
10
+ "github.com/coder/envbox/xunix"
10
11
)
11
12
12
13
const ManagerSocketPath = "/run/sysbox/sysmgr.sock"
You can’t perform that action at this time.
0 commit comments