mirror of
https://github.com/siderolabs/kres.git
synced 2026-02-05 09:45:35 +01:00
feat: update Go to 1.22.3
Update other dependencies. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
This commit is contained in:
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
@@ -1,6 +1,6 @@
|
||||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
|
||||
#
|
||||
# Generated on 2024-04-30T10:47:51Z by kres ebc009d-dirty.
|
||||
# Generated on 2024-05-08T09:34:37Z by kres d15226e-dirty.
|
||||
|
||||
name: default
|
||||
concurrency:
|
||||
@@ -31,7 +31,7 @@ jobs:
|
||||
if: (!startsWith(github.head_ref, 'renovate/') && !startsWith(github.head_ref, 'dependabot/'))
|
||||
services:
|
||||
buildkitd:
|
||||
image: moby/buildkit:v0.13.1
|
||||
image: moby/buildkit:v0.13.2
|
||||
options: --privileged
|
||||
ports:
|
||||
- 1234:1234
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
|
||||
#
|
||||
# Generated on 2024-03-20T17:12:43Z by kres 3d7964d-dirty.
|
||||
# Generated on 2024-05-08T10:33:39Z by kres d15226e-dirty.
|
||||
|
||||
# options for analysis running
|
||||
run:
|
||||
@@ -54,7 +54,6 @@ linters-settings:
|
||||
goimports:
|
||||
local-prefixes: github.com/siderolabs/kres/
|
||||
gomodguard: { }
|
||||
gomnd: { }
|
||||
govet:
|
||||
enable-all: true
|
||||
lll:
|
||||
@@ -109,17 +108,18 @@ linters:
|
||||
disable:
|
||||
- exhaustivestruct
|
||||
- exhaustruct
|
||||
- err113
|
||||
- forbidigo
|
||||
- funlen
|
||||
- gochecknoglobals
|
||||
- gochecknoinits
|
||||
- godox
|
||||
- goerr113
|
||||
- gomnd
|
||||
- gomoddirectives
|
||||
- gosec
|
||||
- inamedparam
|
||||
- ireturn
|
||||
- mnd
|
||||
- nestif
|
||||
- nonamedreturns
|
||||
- nosnakecase
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
# syntax = docker/dockerfile-upstream:1.7.0-labs
|
||||
# syntax = docker/dockerfile-upstream:1.7.1-labs
|
||||
|
||||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
|
||||
#
|
||||
# Generated on 2024-04-20T16:39:33Z by kres add13d7.
|
||||
# Generated on 2024-05-08T09:34:37Z by kres d15226e-dirty.
|
||||
|
||||
ARG TOOLCHAIN
|
||||
|
||||
|
||||
6
Makefile
6
Makefile
@@ -1,6 +1,6 @@
|
||||
# THIS FILE WAS AUTOMATICALLY GENERATED, PLEASE DO NOT EDIT.
|
||||
#
|
||||
# Generated on 2024-04-30T10:44:28Z by kres ebc009d-dirty.
|
||||
# Generated on 2024-05-08T09:34:37Z by kres d15226e-dirty.
|
||||
|
||||
# common variables
|
||||
|
||||
@@ -20,9 +20,9 @@ GRPC_GO_VERSION ?= 1.3.0
|
||||
GRPC_GATEWAY_VERSION ?= 2.19.1
|
||||
VTPROTOBUF_VERSION ?= 0.6.0
|
||||
DEEPCOPY_VERSION ?= v0.5.6
|
||||
GOLANGCILINT_VERSION ?= v1.57.2
|
||||
GOLANGCILINT_VERSION ?= v1.58.0
|
||||
GOFUMPT_VERSION ?= v0.6.0
|
||||
GO_VERSION ?= 1.22.2
|
||||
GO_VERSION ?= 1.22.3
|
||||
GOIMPORTS_VERSION ?= v0.20.0
|
||||
GO_BUILDFLAGS ?=
|
||||
GO_LDFLAGS ?=
|
||||
|
||||
2
go.mod
2
go.mod
@@ -1,6 +1,6 @@
|
||||
module github.com/siderolabs/kres
|
||||
|
||||
go 1.22.2
|
||||
go 1.22.3
|
||||
|
||||
require (
|
||||
github.com/drone/drone-yaml v1.2.3
|
||||
|
||||
@@ -21,7 +21,7 @@ const (
|
||||
|
||||
// BuildKitContainerVersion is the version of buildkit container image.
|
||||
// renovate: datasource=docker versioning=docker depName=moby/buildkit
|
||||
BuildKitContainerVersion = "v0.13.1"
|
||||
BuildKitContainerVersion = "v0.13.2"
|
||||
// CheckOutActionVersion is the version of checkout github action.
|
||||
// renovate: datasource=github-releases extractVersion=^(?<version>v\d+)\.\d+\.\d+$ depName=actions/checkout
|
||||
CheckOutActionVersion = "v4"
|
||||
@@ -33,10 +33,10 @@ const (
|
||||
DeepCopyVersion = "v0.5.6"
|
||||
// DindContainerImageVersion is the version of the dind container image.
|
||||
// renovate: datasource=docker versioning=docker depName=docker
|
||||
DindContainerImageVersion = "26.0-dind"
|
||||
DindContainerImageVersion = "26.1-dind"
|
||||
// DockerfileFrontendImageVersion is the version of the dockerfile frontend image.
|
||||
// renovate: datasource=docker versioning=docker depName=docker/dockerfile-upstream
|
||||
DockerfileFrontendImageVersion = "1.7.0-labs"
|
||||
DockerfileFrontendImageVersion = "1.7.1-labs"
|
||||
// DownloadArtifactActionVersion is the version of download artifact github action.
|
||||
// renovate: datasource=github-releases extractVersion=^(?<version>v\d+)\.\d+\.\d+$ depName=actions/download-artifact
|
||||
DownloadArtifactActionVersion = "v4"
|
||||
@@ -51,13 +51,13 @@ const (
|
||||
GoImportsVersion = "v0.20.0"
|
||||
// GolangCIlintVersion is the version of golangci-lint.
|
||||
// renovate: datasource=go depName=github.com/golangci/golangci-lint
|
||||
GolangCIlintVersion = "v1.57.2"
|
||||
GolangCIlintVersion = "v1.58.0"
|
||||
// GolangContainerImageVersion is the default golang container image.
|
||||
// renovate: datasource=docker versioning=docker depName=golang
|
||||
GolangContainerImageVersion = "1.22-alpine"
|
||||
// GoVersion is the version of Go.
|
||||
// renovate: datasource=github-tags extractVersion=^go(?<version>.*)$ depName=golang/go
|
||||
GoVersion = "1.22.2"
|
||||
GoVersion = "1.22.3"
|
||||
// GrpcGatewayVersion is the version of grpc-gateway.
|
||||
// renovate: datasource=go depName=github.com/grpc-ecosystem/grpc-gateway
|
||||
GrpcGatewayVersion = "v2.19.1"
|
||||
|
||||
@@ -50,7 +50,6 @@ linters-settings:
|
||||
goimports:
|
||||
local-prefixes: %[1]s
|
||||
gomodguard: { }
|
||||
gomnd: { }
|
||||
govet:
|
||||
enable-all: true
|
||||
lll:
|
||||
@@ -105,17 +104,18 @@ linters:
|
||||
disable:
|
||||
- exhaustivestruct
|
||||
- exhaustruct
|
||||
- err113
|
||||
- forbidigo
|
||||
- funlen
|
||||
- gochecknoglobals
|
||||
- gochecknoinits
|
||||
- godox
|
||||
- goerr113
|
||||
- gomnd
|
||||
- gomoddirectives
|
||||
- gosec
|
||||
- inamedparam
|
||||
- ireturn
|
||||
- mnd
|
||||
- nestif
|
||||
- nonamedreturns
|
||||
- nosnakecase
|
||||
|
||||
Reference in New Issue
Block a user