Skip to content

Commit

Permalink
Bump golang to 1.22.3
Browse files Browse the repository at this point in the history
- Bump golang to 1.22.3
- Bump golangci-lint to 1.58.0
- Ignore `k8s.io/*` deps in dependabot configuration
  • Loading branch information
afritzler committed May 22, 2024
1 parent ec2a845 commit 601f143
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
20 changes: 14 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,29 @@ updates:
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
interval: "weekly"
reviewers:
- "ironcore-dev/integration"
# Ignore K8 packages as these are done manually
ignore:
- dependency-name: "k8s.io/api"
- dependency-name: "k8s.io/apiextensions-apiserver"
- dependency-name: "k8s.io/apimachinery"
- dependency-name: "k8s.io/apiserver"
- dependency-name: "k8s.io/client-go"
- dependency-name: "k8s.io/component-base"
- dependency-name: "k8s.io/kube-aggregator"
- dependency-name: "k8s.io/kubectl"
- dependency-name: "sigs.k8s.io/controller-runtime"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
interval: "weekly"
reviewers:
- "ironcore-dev/integration"
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
interval: "weekly"
reviewers:
- "ironcore-dev/integration"
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.57.2
version: v1.58.0
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ GOLANGCI_LINT ?= $(LOCALBIN)/golangci-lint
KUSTOMIZE_VERSION ?= v5.0.0
ADDLICENSE_VERSION ?= v1.1.1
GEN_CRD_API_REFERENCE_DOCS_VERSION ?= v0.3.0
GOIMPORTS_VERSION ?= v0.18.0
GOLANGCI_LINT_VERSION ?= v1.56.2
GOIMPORTS_VERSION ?= v0.21.0
GOLANGCI_LINT_VERSION ?= v1.58.0

KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"
.PHONY: kustomize
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/ironcore-dev/machine-controller-manager-provider-ironcore

go 1.22.2
go 1.22.3

require (
github.com/Masterminds/sprig v2.22.0+incompatible
Expand Down

0 comments on commit 601f143

Please sign in to comment.