diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5124e1e..69a89d4 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -3,8 +3,8 @@ "build": { "dockerfile": "Dockerfile", "args": { - "GO_VERSION": "1.18", - }, + "GO_VERSION": "1.19" + } }, // dlv needs these capabilities. It needs to run the ptrace (process trace) // syscall, and we need to disable the default seccomp profile applied to @@ -35,6 +35,6 @@ "eamodio.gitlens", "golang.go", "ms-azuretools.vscode-docker", - "redhat.vscode-yaml", - ], + "redhat.vscode-yaml" + ] } diff --git a/go.mod b/go.mod index c480952..ddfd63a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/ryboe/q -go 1.18 +go 1.19 require github.com/kr/pretty v0.3.0