Skip to content

Commit

Permalink
feat: update Go to 1.22.3
Browse files Browse the repository at this point in the history
Update other dependencies.

Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
  • Loading branch information
smira committed May 8, 2024
1 parent d15226e commit 1e986af
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -54,7 +54,6 @@ linters-settings:
goimports:
local-prefixes: github.com/siderolabs/kres/
gomodguard: { }
gomnd: { }
govet:
enable-all: true
lll:
Expand Down Expand Up @@ -109,17 +108,18 @@ linters:
disable:
- exhaustivestruct
- exhaustruct
- err113
- forbidigo
- funlen
- gochecknoglobals
- gochecknoinits
- godox
- goerr113
- gomnd
- gomoddirectives
- gosec
- inamedparam
- ireturn
- mnd
- nestif
- nonamedreturns
- nosnakecase
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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 ?=
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 5 additions & 5 deletions internal/config/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions internal/output/golangci/golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ linters-settings:
goimports:
local-prefixes: %[1]s
gomodguard: { }
gomnd: { }
govet:
enable-all: true
lll:
Expand Down Expand Up @@ -105,17 +104,18 @@ linters:
disable:
- exhaustivestruct
- exhaustruct
- err113
- forbidigo
- funlen
- gochecknoglobals
- gochecknoinits
- godox
- goerr113
- gomnd
- gomoddirectives
- gosec
- inamedparam
- ireturn
- mnd
- nestif
- nonamedreturns
- nosnakecase
Expand Down

0 comments on commit 1e986af

Please sign in to comment.