You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: dev-docs/development-process.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ We use `yarn` to run most development commands, so [install that as well](https:
18
18
### Go
19
19
20
20
<!-- the next line is automatically edited; do not change -->
21
-
Go version go1.18.4 is required for some development tasks, in particular to run `yarn generate`.
21
+
Go version go1.18.5 is required for some development tasks, in particular to run `yarn generate`.
22
22
For new contributors not familiar with Go, it's probably safe to skip installing Go for now -- you will see a helpful error if and when it is needed.
23
23
We recommend using https://github.com/moovweb/gvm to support installing multiple Go versions.
# The next line is edited by infrastructure/tooling/src/generate/generators/golangci-lint-version.js
238
238
# DO NOT CHANGE HERE!
239
-
../../../golangci-lint/golangci-lint-1.46.2-*/golangci-lint run --build-tags "${ENGINE}" --timeout=15m
239
+
../../../golangci-lint/golangci-lint-1.47.3-*/golangci-lint run --build-tags "${ENGINE}" --timeout=15m
240
240
241
241
Windows:
242
242
- |
@@ -257,8 +257,8 @@ Commands:
257
257
258
258
# The next two lines are edited by infrastructure/tooling/src/generate/generators/go-version.js
259
259
# DO NOT CHANGE HERE!
260
-
- set GOROOT=%CD%\go1.18.4\go
261
-
- set GOPATH=%CD%\gopath1.18.4
260
+
- set GOROOT=%CD%\go1.18.5\go
261
+
- set GOPATH=%CD%\gopath1.18.5
262
262
263
263
- |
264
264
:: temporarily add C:\cygwin\bin to PATH - if this works out well, we should probably do it in system setup instead (i.e. in default system PATH of the image set)
@@ -317,10 +317,10 @@ Commands:
317
317
:: assumption here is that if something inside the if fails, we'll get a non zero exit code
318
318
:: i've also made it an if/else so that one of them has to run, as there should always be a
319
319
:: linter
320
-
if exist ..\..\..\golangci-lint\golangci-lint-1.46.2-windows-amd64 (
321
-
..\..\..\golangci-lint\golangci-lint-1.46.2-windows-amd64\golangci-lint.exe run --build-tags "%ENGINE%" --timeout=15m
320
+
if exist ..\..\..\golangci-lint\golangci-lint-1.47.3-windows-amd64 (
321
+
..\..\..\golangci-lint\golangci-lint-1.47.3-windows-amd64\golangci-lint.exe run --build-tags "%ENGINE%" --timeout=15m
322
322
) else (
323
-
..\..\..\golangci-lint\golangci-lint-1.46.2-windows-386\golangci-lint.exe run --build-tags "%ENGINE%" --timeout=15m
323
+
..\..\..\golangci-lint\golangci-lint-1.47.3-windows-386\golangci-lint.exe run --build-tags "%ENGINE%" --timeout=15m
0 commit comments