From ac94478861a1a48aaec825d7e66c08fd321a4808 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Mon, 15 Jul 2024 12:23:29 +0400 Subject: [PATCH] feat: update dependencies New buildkit, dockerfile frontend, etc. Signed-off-by: Andrey Smirnov --- Dockerfile | 6 +++--- Makefile | 4 ++-- go.mod | 4 ++-- go.sum | 2 ++ internal/config/constants.go | 8 ++++---- 5 files changed, 13 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8d7700..483c8b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -# syntax = docker/dockerfile-upstream:1.8.1-labs +# syntax = docker/dockerfile-upstream:1.9.0-labs # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-07-02T10:50:06Z by kres 4c9f215-dirty. +# Generated on 2024-07-15T08:20:48Z by kres 8c8b007-dirty. ARG TOOLCHAIN @@ -11,7 +11,7 @@ FROM ghcr.io/siderolabs/ca-certificates:v1.7.0 AS image-ca-certificates FROM ghcr.io/siderolabs/fhs:v1.7.0 AS image-fhs # runs markdownlint -FROM docker.io/oven/bun:1.1.17-alpine AS lint-markdown +FROM docker.io/oven/bun:1.1.20-alpine AS lint-markdown WORKDIR /src RUN bun i markdownlint-cli@0.41.0 sentences-per-line@0.2.1 COPY .markdownlint.json . diff --git a/Makefile b/Makefile index 8ada16c..7d502a4 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT. # -# Generated on 2024-06-12T12:01:45Z by kres 7360563-dirty. +# Generated on 2024-07-15T08:20:48Z by kres 8c8b007-dirty. # common variables @@ -21,7 +21,7 @@ PROTOBUF_GO_VERSION ?= 1.34.2 GRPC_GO_VERSION ?= 1.4.0 GRPC_GATEWAY_VERSION ?= 2.20.0 VTPROTOBUF_VERSION ?= 0.6.0 -GOIMPORTS_VERSION ?= 0.22.0 +GOIMPORTS_VERSION ?= 0.23.0 DEEPCOPY_VERSION ?= v0.5.6 GOLANGCILINT_VERSION ?= v1.59.1 GOFUMPT_VERSION ?= v0.6.0 diff --git a/go.mod b/go.mod index 6aee097..c584cb1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/siderolabs/kres -go 1.22.3 +go 1.22.5 require ( github.com/drone/drone-yaml v1.2.3 @@ -10,7 +10,7 @@ require ( github.com/siderolabs/gen v0.5.0 github.com/spf13/cobra v1.8.1 github.com/stretchr/testify v1.9.0 - golang.org/x/mod v0.18.0 + golang.org/x/mod v0.19.0 golang.org/x/oauth2 v0.21.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/go.sum b/go.sum index a6eb228..53454d7 100644 --- a/go.sum +++ b/go.sum @@ -144,6 +144,8 @@ golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91 golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/mod v0.18.0 h1:5+9lSbEzPSdWkH32vYPBwEpX8KwDbM52Ud9xBUvNlb0= golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.19.0 h1:fEdghXQSo20giMthA7cd28ZC+jts4amQ3YMXiP5oMQ8= +golang.org/x/mod v0.19.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181005035420-146acd28ed58/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= diff --git a/internal/config/constants.go b/internal/config/constants.go index 0e46d09..dd6c6e9 100644 --- a/internal/config/constants.go +++ b/internal/config/constants.go @@ -21,7 +21,7 @@ const ( // BuildKitContainerVersion is the version of buildkit container image. // renovate: datasource=docker versioning=docker depName=moby/buildkit - BuildKitContainerVersion = "v0.14.1" + BuildKitContainerVersion = "v0.15.0" // CheckOutActionVersion is the version of checkout github action. // renovate: datasource=github-releases extractVersion=^(?v\d+)\.\d+\.\d+$ depName=actions/checkout CheckOutActionVersion = "v4" @@ -36,7 +36,7 @@ const ( DindContainerImageVersion = "27.0-dind" // DockerfileFrontendImageVersion is the version of the dockerfile frontend image. // renovate: datasource=docker versioning=docker depName=docker/dockerfile-upstream - DockerfileFrontendImageVersion = "1.8.1-labs" + DockerfileFrontendImageVersion = "1.9.0-labs" // DownloadArtifactActionVersion is the version of download artifact github action. // renovate: datasource=github-releases extractVersion=^(?v\d+)\.\d+\.\d+$ depName=actions/download-artifact DownloadArtifactActionVersion = "v4" @@ -48,7 +48,7 @@ const ( GoFmtVersion = "v0.6.0" // GoImportsVersion is the version of goimports. // renovate: datasource=go depName=golang.org/x/tools - GoImportsVersion = "v0.22.0" + GoImportsVersion = "v0.23.0" // GolangCIlintVersion is the version of golangci-lint. // renovate: datasource=go depName=github.com/golangci/golangci-lint GolangCIlintVersion = "v1.59.1" @@ -72,7 +72,7 @@ const ( MardownLintCLIVersion = "0.41.0" // BunContainerImageVersion is the default bun container image. // renovate: datasource=docker versioning=docker depName=oven/bun - BunContainerImageVersion = "1.1.17-alpine" + BunContainerImageVersion = "1.1.20-alpine" // PkgsVersion is the version of pkgs. // renovate: datasource=github-tags depName=siderolabs/pkgs PkgsVersion = "v1.7.0"