summaryrefslogtreecommitdiffstats
path: root/.golangci.yml
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-07-30 19:33:20 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-30 19:59:51 +1000
commit975d2bedb67c0c87203cfc7bdf2cd67d6d40d0f3 (patch)
tree8e208fc96d560ab50a8c450a337eaa29b7db0246 /.golangci.yml
parent5c7839429909c411504351da8c1b204b3f5fa2f2 (diff)
Remove secureexec package
From the go 1.19 release notes: Command and LookPath no longer allow results from a PATH search to be found relative to the current directory. This removes a common source of security problems but may also break existing programs that depend on using, say, exec.Command("prog") to run a binary named prog (or, on Windows, prog.exe) in the current directory. See the os/exec package documentation for information about how best to update such programs.
Diffstat (limited to '.golangci.yml')
-rw-r--r--.golangci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.golangci.yml b/.golangci.yml
index de90dc516..c458277ed 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -26,4 +26,4 @@ linters-settings:
max-func-lines: 0
run:
- go: 1.18
+ go: 1.20