Skip to content

Commit 73fad60

Browse files
author
Dmitriy Matrenichev
committed
chore: bump deps
- run rekres - github.com/Masterminds/sprig/v3 to v3.3.0 - github.com/google/go-github to v65.0.0 - github.com/moby/buildkit to v0.16.0 - golang.org/x/oauth2 to v0.23.0 Signed-off-by: Dmitriy Matrenichev <[email protected]>
1 parent 9a526ec commit 73fad60

File tree

7 files changed

+175
-118
lines changed

7 files changed

+175
-118
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# syntax = docker/dockerfile-upstream:1.9.0-labs
1+
# syntax = docker/dockerfile-upstream:1.10.0-labs
22

33
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
44
#
5-
# Generated on 2024-08-05T10:23:31Z by kres faf91e3.
5+
# Generated on 2024-10-02T14:48:15Z by kres 34e72ac.
66

77
ARG TOOLCHAIN
88

9-
FROM ghcr.io/siderolabs/ca-certificates:v1.7.0 AS image-ca-certificates
9+
FROM ghcr.io/siderolabs/ca-certificates:v1.8.0 AS image-ca-certificates
1010

11-
FROM ghcr.io/siderolabs/fhs:v1.7.0 AS image-fhs
11+
FROM ghcr.io/siderolabs/fhs:v1.8.0 AS image-fhs
1212

1313
# runs markdownlint
14-
FROM docker.io/oven/bun:1.1.20-alpine AS lint-markdown
14+
FROM docker.io/oven/bun:1.1.29-alpine AS lint-markdown
1515
WORKDIR /src
1616
1717
COPY .markdownlint.json .

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
22
#
3-
# Generated on 2024-08-05T10:23:31Z by kres faf91e3.
3+
# Generated on 2024-10-02T14:48:15Z by kres 34e72ac.
44

55
# common variables
66

@@ -18,14 +18,14 @@ REGISTRY ?= ghcr.io
1818
USERNAME ?= siderolabs
1919
REGISTRY_AND_USERNAME ?= $(REGISTRY)/$(USERNAME)
2020
PROTOBUF_GO_VERSION ?= 1.34.2
21-
GRPC_GO_VERSION ?= 1.4.0
22-
GRPC_GATEWAY_VERSION ?= 2.20.0
21+
GRPC_GO_VERSION ?= 1.5.1
22+
GRPC_GATEWAY_VERSION ?= 2.22.0
2323
VTPROTOBUF_VERSION ?= 0.6.0
24-
GOIMPORTS_VERSION ?= 0.23.0
24+
GOIMPORTS_VERSION ?= 0.25.0
2525
DEEPCOPY_VERSION ?= v0.5.6
26-
GOLANGCILINT_VERSION ?= v1.59.1
27-
GOFUMPT_VERSION ?= v0.6.0
28-
GO_VERSION ?= 1.22.5
26+
GOLANGCILINT_VERSION ?= v1.61.0
27+
GOFUMPT_VERSION ?= v0.7.0
28+
GO_VERSION ?= 1.23.2
2929
GO_BUILDFLAGS ?=
3030
GO_LDFLAGS ?=
3131
CGO_ENABLED ?= 0
@@ -67,7 +67,7 @@ COMMON_ARGS += --build-arg=DEEPCOPY_VERSION="$(DEEPCOPY_VERSION)"
6767
COMMON_ARGS += --build-arg=GOLANGCILINT_VERSION="$(GOLANGCILINT_VERSION)"
6868
COMMON_ARGS += --build-arg=GOFUMPT_VERSION="$(GOFUMPT_VERSION)"
6969
COMMON_ARGS += --build-arg=TESTPKGS="$(TESTPKGS)"
70-
TOOLCHAIN ?= docker.io/golang:1.22-alpine
70+
TOOLCHAIN ?= docker.io/golang:1.23-alpine
7171

7272
# extra variables
7373

go.mod

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,35 +4,36 @@ go 1.22.3
44

55
require (
66
github.com/Masterminds/semver v1.5.0
7-
github.com/Masterminds/sprig/v3 v3.2.3
7+
github.com/Masterminds/sprig/v3 v3.3.0
88
github.com/containerd/platforms v0.2.1
99
github.com/emicklei/dot v1.6.2
10-
github.com/google/go-github/v63 v63.0.0
10+
github.com/google/go-github/v65 v65.0.0
1111
github.com/hashicorp/go-multierror v1.1.1
12-
github.com/moby/buildkit v0.15.1
12+
github.com/moby/buildkit v0.16.0
1313
github.com/moby/docker-image-spec v1.3.1
1414
github.com/opencontainers/go-digest v1.0.0
1515
github.com/opencontainers/image-spec v1.1.0
1616
github.com/otiai10/copy v1.14.0
1717
github.com/siderolabs/gen v0.5.0
1818
github.com/spf13/cobra v1.8.1
1919
github.com/stretchr/testify v1.9.0
20-
golang.org/x/oauth2 v0.22.0
20+
golang.org/x/oauth2 v0.23.0
2121
golang.org/x/sync v0.8.0
2222
gopkg.in/yaml.v3 v3.0.1
2323
)
2424

2525
require (
26+
dario.cat/mergo v1.0.1 // indirect
2627
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
2728
github.com/Masterminds/goutils v1.1.1 // indirect
28-
github.com/Masterminds/semver/v3 v3.2.0 // indirect
29+
github.com/Masterminds/semver/v3 v3.3.0 // indirect
2930
github.com/Microsoft/go-winio v0.6.2 // indirect
30-
github.com/containerd/containerd v1.7.20 // indirect
31+
github.com/containerd/containerd v1.7.21 // indirect
3132
github.com/containerd/continuity v0.4.3 // indirect
3233
github.com/containerd/errdefs v0.1.0 // indirect
3334
github.com/containerd/log v0.1.0 // indirect
3435
github.com/containerd/ttrpc v1.2.5 // indirect
35-
github.com/containerd/typeurl/v2 v2.1.1 // indirect
36+
github.com/containerd/typeurl/v2 v2.2.0 // indirect
3637
github.com/davecgh/go-spew v1.1.1 // indirect
3738
github.com/distribution/reference v0.6.0 // indirect
3839
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -45,23 +46,21 @@ require (
4546
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
4647
github.com/google/uuid v1.6.0 // indirect
4748
github.com/hashicorp/errwrap v1.1.0 // indirect
48-
github.com/huandu/xstrings v1.3.3 // indirect
49-
github.com/imdario/mergo v0.3.13 // indirect
49+
github.com/huandu/xstrings v1.5.0 // indirect
5050
github.com/in-toto/in-toto-golang v0.5.0 // indirect
5151
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5252
github.com/klauspost/compress v1.17.9 // indirect
53-
github.com/kr/text v0.2.0 // indirect
54-
github.com/mitchellh/copystructure v1.0.0 // indirect
55-
github.com/mitchellh/reflectwalk v1.0.0 // indirect
53+
github.com/mitchellh/copystructure v1.2.0 // indirect
54+
github.com/mitchellh/reflectwalk v1.0.2 // indirect
5655
github.com/moby/locker v1.0.1 // indirect
57-
github.com/moby/sys/signal v0.7.0 // indirect
56+
github.com/moby/sys/signal v0.7.1 // indirect
5857
github.com/pkg/errors v0.9.1 // indirect
5958
github.com/pmezard/go-difflib v1.0.0 // indirect
6059
github.com/secure-systems-lab/go-securesystemslib v0.4.0 // indirect
6160
github.com/shibumi/go-pathspec v1.3.0 // indirect
62-
github.com/shopspring/decimal v1.2.0 // indirect
61+
github.com/shopspring/decimal v1.4.0 // indirect
6362
github.com/sirupsen/logrus v1.9.3 // indirect
64-
github.com/spf13/cast v1.3.1 // indirect
63+
github.com/spf13/cast v1.7.0 // indirect
6564
github.com/spf13/pflag v1.0.5 // indirect
6665
github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c // indirect
6766
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
@@ -71,12 +70,12 @@ require (
7170
go.opentelemetry.io/otel/metric v1.21.0 // indirect
7271
go.opentelemetry.io/otel/sdk v1.21.0 // indirect
7372
go.opentelemetry.io/otel/trace v1.21.0 // indirect
74-
golang.org/x/crypto v0.23.0 // indirect
73+
golang.org/x/crypto v0.26.0 // indirect
7574
golang.org/x/net v0.25.0 // indirect
76-
golang.org/x/sys v0.22.0 // indirect
77-
golang.org/x/text v0.15.0 // indirect
78-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231212172506-995d672761c0 // indirect
79-
google.golang.org/grpc v1.59.0 // indirect
75+
golang.org/x/sys v0.23.0 // indirect
76+
golang.org/x/text v0.17.0 // indirect
77+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect
78+
google.golang.org/grpc v1.62.0 // indirect
8079
google.golang.org/protobuf v1.33.0 // indirect
8180
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
8281
)

0 commit comments

Comments
 (0)