We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9da6f52 commit a23448bCopy full SHA for a23448b
2 files changed
Dockerfile
@@ -14,7 +14,7 @@
14
# See the License for the specific language governing permissions and
15
# limitations under the License.
16
17
-ARG GO_VERSION="1.16"
+ARG GO_VERSION="1.18"
18
ARG GOLANGCI_LINT_VERSION="v1.37"
19
ARG ADDLICENSE_VERSION="v1.0.0"
20
go.mod
@@ -1,10 +1,17 @@
1
module github.com/docker/cli-docs-tool
2
3
-go 1.16
+go 1.18
4
5
require (
6
github.com/spf13/cobra v1.2.1
7
github.com/spf13/pflag v1.0.5
8
github.com/stretchr/testify v1.7.0
9
gopkg.in/yaml.v2 v2.4.0
10
)
11
+
12
+require (
13
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/inconshreveable/mousetrap v1.0.0 // indirect
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
+)
0 commit comments