Skip to content

Commit

Permalink
go.mod,Makefile,docs: use go 1.22.10.
Browse files Browse the repository at this point in the history
Signed-off-by: Krisztian Litkey <[email protected]>
  • Loading branch information
klihub authored and askervin committed Dec 17, 2024
1 parent b84c451 commit 00c77b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ GO_LINT := golint -set_exit_status
GO_FMT := gofmt
GO_VET := $(GO_CMD) vet
GO_DEPS := $(GO_CMD) list -f '{{ join .Deps "\n" }}'
GO_VERSION ?= 1.22.1
GO_VERSION ?= 1.22.10

GO_MODULES := $(shell $(GO_CMD) list ./...)
GO_SUBPKGS := $(shell find ./pkg -name go.mod | sed 's:/go.mod::g' | grep -v testdata | \
Expand Down
2 changes: 1 addition & 1 deletion docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM sphinxdoc/sphinx:7.4.7

ARG GO_VERSION=1.23.3
ARG GO_VERSION=1.22

RUN apt-get update && apt-get install -y wget git

Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/containers/nri-plugins

go 1.22.0

toolchain go1.22.3
go 1.22.10

require (
github.com/containerd/nri v0.6.0
Expand Down

0 comments on commit 00c77b6

Please sign in to comment.