Skip to content

fix(deps): update all dependencies#706

Merged
adrianriobo merged 1 commit into
mainfrom
renovate/all
Jan 20, 2026
Merged

fix(deps): update all dependencies#706
adrianriobo merged 1 commit into
mainfrom
renovate/all

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jan 12, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/runner minor 2.330.02.331.0 age confidence
cirruslabs/cirrus-cli minor v0.159.1v0.160.0 age confidence
github.com/Azure/azure-sdk-for-go/sdk/azcore require minor v1.20.0v1.21.0 age confidence
github.com/MirrexOne/unqueryvet indirect minor v1.4.0v1.5.1 age confidence
github.com/alecthomas/chroma/v2 indirect minor v2.21.1v2.23.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ecs require minor v1.70.1v1.71.0 age confidence
github.com/go-viper/mapstructure/v2 indirect minor v2.4.0v2.5.0 age confidence
github.com/golangci/gofmt indirect digest d62b90ee7be49a age confidence
github.com/pulumi/pulumi-aws-native/sdk require minor v1.47.0v1.49.0 age confidence
github.com/pulumi/pulumi-aws/sdk/v7 require minor v7.15.0v7.16.0 age confidence
github.com/pulumi/pulumi-kubernetes/sdk/v4 require minor v4.24.1v4.25.0 age confidence
github.com/pulumi/pulumi-random/sdk/v4 require minor v4.18.5v4.19.0 age confidence
github.com/pulumi/pulumi/sdk/v3 require minor v3.215.0v3.216.0 age confidence
golang.org/x/crypto indirect minor v0.46.0v0.47.0 age confidence
golang.org/x/exp require digest 944ab1f716be56 age confidence
golang.org/x/exp/typeparams indirect digest 944ab1f716be56 age confidence
golang.org/x/mod indirect minor v0.31.0v0.32.0 age confidence
golang.org/x/net indirect minor v0.48.0v0.49.0 age confidence
golang.org/x/term indirect minor v0.38.0v0.39.0 age confidence
golang.org/x/text indirect minor v0.32.0v0.33.0 age confidence
golang.org/x/tools indirect minor v0.40.0v0.41.0 age confidence
google.golang.org/genproto/googleapis/rpc indirect digest 0a764e53f89685 age confidence
pulumi/pulumi minor 3.215.03.216.0 age confidence
pulumi/pulumi-aws minor v7.15.0v7.16.0 age confidence
pulumi/pulumi-aws-native minor v1.47.0v1.49.0 age confidence
pulumi/pulumi-random minor v4.18.5v4.19.0 age confidence
registry.access.redhat.com/ubi9/go-toolset stage digest 38d909be893856
registry.access.redhat.com/ubi9/ubi final digest 2c9bb6822e9573

Release Notes

actions/runner (actions/runner)

v2.331.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.330.0...v2.331.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.331.0/actions-runner-win-x64-2.331.0.zip -OutFile actions-runner-win-x64-2.331.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.331.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.331.0/actions-runner-win-arm64-2.331.0.zip -OutFile actions-runner-win-arm64-2.331.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.331.0.zip", "$PWD")

OSX x64

# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.331.0/actions-runner-osx-x64-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.331.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.331.0/actions-runner-osx-arm64-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.331.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.331.0/actions-runner-linux-x64-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.331.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.331.0/actions-runner-linux-arm64-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.331.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.331.0/actions-runner-linux-arm-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.331.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.331.0.zip 473e74b86cd826e073f1c1f2c004d3fb9e6c9665d0d51710a23e5084a601c78a
  • actions-runner-win-arm64-2.331.0.zip 12ac57b6e00acb308e3b53f1d34e81af64461084672630a41b9cfc05f6dc0ca2
  • actions-runner-osx-x64-2.331.0.tar.gz 0bcba2dd55eb429620f3184cebaa2e403e99dbf2b621e5858203c3aca3900878
  • actions-runner-osx-arm64-2.331.0.tar.gz 6f56ce368b09041f83c5ded4d0fb83b08d9a28e22300a2ce5cb1ed64e67ea47c
  • actions-runner-linux-x64-2.331.0.tar.gz 5fcc01bd546ba5c3f1291c2803658ebd3cedb3836489eda3be357d41bfcf28a7
  • actions-runner-linux-arm64-2.331.0.tar.gz f5863a211241436186723159a111f352f25d5d22711639761ea24c98caef1a9a
  • actions-runner-linux-arm-2.331.0.tar.gz f233d41c2080d9c8ae7533857c4ff6a3d3d7102632ce441fc400e0339c5b76cc
cirruslabs/cirrus-cli (cirruslabs/cirrus-cli)

v0.160.0

Compare Source

What's Changed

Full Changelog: cirruslabs/cirrus-cli@v0.159.1...v0.160.0

MirrexOne/unqueryvet (github.com/MirrexOne/unqueryvet)

v1.5.1

Compare Source

Release v1.5.1

New Features

VS Code Extension - Automatic LSP Installation

  • Automatic LSP server download on first use
  • Cross-platform support (Windows, Linux, macOS - amd64/arm64)
  • Intelligent LSP discovery (PATH, GOPATH, or auto-download)
  • Download progress indicators
  • Multiple installation options (auto, manual, custom path)

Build Automation

  • Cross-compilation scripts for all platforms
  • Automated LSP binary builds via GitHub Actions
  • Checksums for all binaries

Extension Synchronization

  • VS Code Extension: v1.5.1
  • GoLand Plugin: v1.5.1
Installation

VS Code Extension:

  1. Install from VS Code Marketplace
  2. Open any Go file
  3. Click "Download" when prompted for LSP installation

GoLand Plugin:

  • Available in JetBrains Marketplace: Settings → Plugins → Search "unqueryvet"

Manual LSP Installation:

go install github.com/MirrexOne/unqueryvet/cmd/unqueryvet-lsp@v1.5.1
Assets
  • LSP binaries for all platforms (will be attached automatically by GitHub Actions)
  • Checksums file
  • GoLand plugin (attached by workflow)
Documentation

v1.5.0: - Custom Rules DSL & IDE Extensions

Compare Source

New Features

Custom Rules DSL

Define your own analysis rules using a simple YAML-based DSL:

  • Create custom patterns for detecting SQL anti-patterns
  • Configure rule severity (error or warning)
  • Add project-specific rules in .unqueryvet/rules/
IDE Extensions Support
  • VS Code Extension: Real-time diagnostics with LSP integration
  • GoLand Plugin: Native IDE integration with quick-fixes
  • JSON Schema in SchemaStore: Auto-completion and validation for .unqueryvet.yaml config files in all major IDEs (SchemaStore#5279)

Improvements

  • Updated GoLand plugin description to match implemented features
  • Reduced cyclomatic complexity in analyzer functions
  • Better code organization with gofumpt formatting

Fixes

  • Fixed ineffassign warning in pgx.go
  • Resolved golangci-lint v2.8.0 compatibility issues

Installation

go install github.com/MirrexOne/unqueryvet/cmd/unqueryvet@v1.5.0

Full Changelog: MirrexOne/unqueryvet@v1.4.0...v1.5.0

alecthomas/chroma (github.com/alecthomas/chroma/v2)

v2.23.0

Compare Source

Changelog

  • 610afd8 feat: add light/dark mode toggle
  • 1b5aad9 fix: make just commands faster
  • 84583c6 fix: wait for WASM runtime to become ready at startup
  • 1b6f6e7 fix: need relative import for wasm_exec.js
  • 2a78195 fix: wasm builds got broken by the last change
  • f8a34ec feat: fix local dev so it falls back to server
  • 6827057 refactor: migrate to Just
  • a60896f Create a lexer for Markless (#​1195)

v2.22.0

Compare Source

Changelog
aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2/service/ecs)

v1.71.0

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/cleanrooms: v1.41.0
    • Feature: This release adds support for parameters in PySpark analysis templates.
  • github.com/aws/aws-sdk-go-v2/service/deadline: v1.23.0
    • Feature: AWS Deadline Cloud now supports tagging Budget resources with ABAC for permissions management and selecting up to 16 filter values in the monitor and Search API.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.279.2
    • Documentation: This release includes documentation updates to support up to four Elastic Volume modifications per Amazon EBS volume within a rolling 24-hour period.
  • github.com/aws/aws-sdk-go-v2/service/ecs: v1.71.0
    • Feature: Adds support for configuring FIPS in AWS GovCloud (US) Regions via a new ECS Capacity Provider field fipsEnabled. When enabled, instances launched by the capacity provider will use a FIPS-140 enabled AMI. Instances will use FIPS-140 compliant cryptographic modules and AWS FIPS endpoints.
  • github.com/aws/aws-sdk-go-v2/service/evs: v1.6.0
    • Feature: A new GetVersions API has been added to retrieve VCF, ESX versions, and EC2 instances provided by Amazon EVS. The CreateEnvironment API now allows you to select a VCF version and the CreateEnvironmentHost API introduces a optional esxVersion parameter.
  • github.com/aws/aws-sdk-go-v2/service/lakeformation: v1.47.0
    • Feature: API Changes for GTCForLocation feature. Includes a new API, GetTemporaryDataLocationCredentials and updates to the APIs RegisterResource and UpdateResource
  • github.com/aws/aws-sdk-go-v2/service/opensearchserverless: v1.29.0
    • Feature: Collection groups in Amazon OpenSearch Serverless enables to organize multiple collections and enable compute resource sharing across collections with different KMS keys. This shared compute model reduces costs by eliminating the need for separate OpenSearch Compute Units (OCUs) for each KMS key.
  • github.com/aws/aws-sdk-go-v2/service/qconnect: v1.26.0
    • Feature: Fix inference configuration shapes for the CreateAIPrompt and UpdateAIPrompt APIs, Modify Text Length Limit for SendMessage API
go-viper/mapstructure (github.com/go-viper/mapstructure/v2)

v2.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: go-viper/mapstructure@v2.4.0...v2.5.0

pulumi/pulumi-aws-native (github.com/pulumi/pulumi-aws-native/sdk)

v1.49.0

Compare Source

Changelog

v1.48.0

Compare Source

Changelog

pulumi/pulumi-aws (github.com/pulumi/pulumi-aws/sdk/v7)

v7.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: pulumi/pulumi-aws@v7.15.0...v7.16.0

pulumi/pulumi-kubernetes (github.com/pulumi/pulumi-kubernetes/sdk/v4)

v4.25.0

Compare Source

pulumi/pulumi-random (github.com/pulumi/pulumi-random/sdk/v4)

v4.19.0

Compare Source

What's Changed

Full Changelog: pulumi/pulumi-random@v4.18.5...v4.19.0

pulumi/pulumi (github.com/pulumi/pulumi/sdk/v3)

v3.216.0

Compare Source

3.216.0 (2026-01-16)
Features
  • [build] Don't set PULUMI_ROOT with mise
    #​21457

  • [cli] Default to Pulumi Cloud when using an OIDC token for login
    #​21322

  • [engine] Add CheckPulumiVersion RPC to the engine
    #​21429

  • [protobuf] Remove ProviderHandshakeResponse.pulumi_version_range
    #​21438

  • [sdk/nodejs] Allow dynamic providers to return inputs from read() for accurate diffs after refresh
    #​21315

  • [sdk/nodejs] Add support for serializing async generators
    #​21410

  • [sdk/python] Allow dynamic providers to return inputs from read() for accurate diffs after refresh
    #​21315

Bug Fixes
  • [engine] Optimize StackReference performance
    #​21446

  • [cli/display] Fix message renderer on windows
    #​21401

  • [sdk/nodejs] Fix RangeError in defaultErrorMessage when error objects are large
    #​21409

Miscellaneous
  • [sdk/dotnet] Update dotnet to v3.97.0

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Jan 12, 2026

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: tools/go.sum
Command failed: go get -t ./...
go: downloading github.com/golangci/golangci-lint/v2 v2.8.0
go: downloading github.com/fatih/color v1.18.0
go: downloading github.com/gofrs/flock v0.13.0
go: downloading github.com/hashicorp/go-version v1.8.0
go: downloading github.com/ldez/grignotin v0.10.1
go: downloading github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
go: downloading go.uber.org/automaxprocs v1.6.0
go: downloading github.com/mattn/go-colorable v0.1.14
go: downloading github.com/alecthomas/chroma/v2 v2.23.0
go: downloading github.com/golangci/plugin-module-register v0.1.2
go: downloading github.com/go-xmlfmt/xmlfmt v1.1.3
go: downloading github.com/golangci/revgrep v0.8.0
go: downloading github.com/daixiang0/gci v0.13.7
go: downloading github.com/golangci/gofmt v0.0.0-20251215234548-e7be49a5ab4d
go: downloading mvdan.cc/gofumpt v0.9.2
go: downloading github.com/golangci/golines v0.14.0
go: downloading github.com/sourcegraph/go-diff v0.7.0
go: downloading github.com/golangci/swaggoswag v0.0.0-20250504205917-77f2aca3143e
go: downloading go.augendre.info/arangolint v0.4.0
go: downloading github.com/alingse/asasalint v0.0.11
go: downloading github.com/golangci/asciicheck v0.5.0
go: downloading github.com/breml/bidichk v0.3.3
go: downloading github.com/timakin/bodyclose v0.0.0-20241222091800-1db5c5ca4d67
go: downloading github.com/lasiar/canonicalheader v1.1.2
go: downloading github.com/sivchari/containedctx v1.0.3
go: downloading github.com/kkHAIKE/contextcheck v1.1.6
go: downloading github.com/karamaru-alpha/copyloopvar v1.2.2
go: downloading github.com/bkielbasa/cyclop v1.2.3
go: downloading gitlab.com/bosi/decorder v0.4.2
go: downloading github.com/OpenPeeDeeP/depguard/v2 v2.2.1
go: downloading github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32
go: downloading github.com/Abirdcfly/dupword v0.1.7
go: downloading github.com/charithe/durationcheck v0.0.11
go: downloading github.com/manuelarte/embeddedstructfieldcheck v0.4.0
go: downloading github.com/Djarvur/go-err113 v0.1.1
go: downloading github.com/kisielk/errcheck v1.9.0
go: downloading github.com/breml/errchkjson v0.4.1
go: downloading github.com/Antonboom/errname v1.1.1
go: downloading codeberg.org/polyfloyd/go-errorlint v1.9.0
go: downloading github.com/nishanths/exhaustive v0.12.0
go: downloading dev.gaijin.team/go/exhaustruct/v4 v4.0.0
go: downloading github.com/ldez/exptostd v0.4.5
go: downloading go.augendre.info/fatcontext v0.9.0
go: downloading github.com/ashanbrown/forbidigo/v2 v2.3.0
go: downloading github.com/gostaticanalysis/forcetypeassert v0.2.0
go: downloading github.com/manuelarte/funcorder v0.5.0
go: downloading github.com/ultraware/funlen v0.2.0
go: downloading github.com/nunnatsa/ginkgolinter v0.22.0
go: downloading 4d63.com/gocheckcompilerdirectives v1.3.0
go: downloading 4d63.com/gochecknoglobals v0.2.2
go: downloading github.com/alecthomas/go-check-sumtype v0.3.1
go: downloading github.com/uudashr/gocognit v1.2.0
go: downloading github.com/jgautheron/goconst v1.8.2
go: downloading github.com/go-critic/go-critic v0.14.3
go: downloading github.com/quasilyte/go-ruleguard/dsl v0.3.23
go: downloading github.com/quasilyte/go-ruleguard v0.4.5
go: downloading github.com/fzipp/gocyclo v0.6.0
go: downloading github.com/godoc-lint/godoc-lint v0.11.1
go: downloading github.com/tetafro/godot v1.5.4
go: downloading github.com/matoous/godox v1.1.0
go: downloading github.com/denis-tingaikin/go-header v0.5.0
go: downloading github.com/ldez/gomoddirectives v0.8.0
go: downloading github.com/ryancurrah/gomodguard v1.4.1
go: downloading github.com/golangci/go-printf-func-name v0.1.1
go: downloading github.com/securego/gosec/v2 v2.22.11
go: downloading github.com/xen0n/gosmopolitan v1.3.0
go: downloading github.com/leonklingele/grouper v1.1.2
go: downloading github.com/uudashr/iface v1.4.1
go: downloading github.com/julz/importas v0.2.0
go: downloading github.com/macabu/inamedparam v0.2.0
go: downloading github.com/gordonklaus/ineffassign v0.2.0
go: downloading github.com/sashamelentyev/interfacebloat v1.1.0
go: downloading github.com/ckaznocha/intrange v0.3.1
go: downloading github.com/AdminBenni/iota-mixing v1.0.0
go: downloading github.com/butuzov/ireturn v0.4.0
go: downloading github.com/timonwong/loggercheck v0.11.0
go: downloading github.com/yagipy/maintidx v1.0.0
go: downloading github.com/ashanbrown/makezero/v2 v2.1.0
go: downloading github.com/butuzov/mirror v1.3.0
go: downloading github.com/golangci/misspell v0.7.0
go: downloading github.com/tommy-muehle/go-mnd/v2 v2.5.1
go: downloading go-simpler.org/musttag v0.14.0
go: downloading github.com/alexkohler/nakedret/v2 v2.0.6
go: downloading github.com/nakabonne/nestif v0.3.1
go: downloading github.com/gostaticanalysis/nilerr v0.1.2
go: downloading github.com/alingse/nilnesserr v0.2.0
go: downloading github.com/Antonboom/nilnil v1.1.1
go: downloading github.com/ssgreg/nlreturn/v2 v2.2.1
go: downloading github.com/sonatard/noctx v0.4.0
go: downloading github.com/AlwxSin/noinlineerr v1.0.5
go: downloading github.com/firefart/nonamedreturns v1.0.6
go: downloading github.com/stbenjam/no-sprintf-host-port v0.3.1
go: downloading github.com/kunwardeep/paralleltest v1.0.15
go: downloading github.com/catenacyber/perfsprint v0.10.1
go: downloading github.com/alexkohler/prealloc v1.0.2
go: downloading github.com/nishanths/predeclared v0.2.2
go: downloading github.com/yeya24/promlinter v0.3.0
go: downloading github.com/ghostiam/protogetter v0.3.19
go: downloading github.com/curioswitch/go-reassign v0.3.0
go: downloading github.com/raeperd/recvcheck v0.2.0
go: downloading github.com/BurntSushi/toml v1.6.0
go: downloading github.com/mgechev/revive v1.13.0
go: downloading github.com/jingyugao/rowserrcheck v1.1.1
go: downloading go-simpler.org/sloglint v0.11.1
go: downloading github.com/jjti/go-spancheck v0.6.5
go: downloading github.com/ryanrolds/sqlclosecheck v0.5.1
go: downloading honnef.co/go/tools v0.6.1
go: downloading github.com/4meepo/tagalign v1.4.3
go: downloading github.com/ldez/tagliatelle v0.7.2
go: downloading github.com/maratori/testableexamples v1.0.1
go: downloading github.com/Antonboom/testifylint v1.6.4
go: downloading github.com/maratori/testpackage v1.1.2
go: downloading github.com/kulti/thelper v0.7.1
go: downloading github.com/moricho/tparallel v0.3.2
go: downloading github.com/golangci/unconvert v0.0.0-20250410112200-a129a6e6413e
go: downloading mvdan.cc/unparam v0.0.0-20251027182757-5beb8c8f8f15
go: downloading github.com/MirrexOne/unqueryvet v1.5.1
go: downloading github.com/sashamelentyev/usestdlibvars v1.29.0
go: downloading github.com/ldez/usetesting v0.5.0
go: downloading github.com/blizzy78/varnamelen v0.8.0
go: downloading github.com/sanposhiho/wastedassign/v2 v2.1.0
go: downloading github.com/ultraware/whitespace v0.2.0
go: downloading github.com/tomarrell/wrapcheck/v2 v2.12.0
go: downloading github.com/bombsimon/wsl/v4 v4.7.0
go: downloading github.com/bombsimon/wsl/v5 v5.3.0
go: downloading github.com/ykadowak/zerologlint v0.1.5
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/stretchr/objx v0.5.3
go: downloading github.com/dlclark/regexp2 v1.11.5
go: downloading github.com/hexops/gotextdiff v1.0.3
go: downloading go.uber.org/zap v1.27.1
go: downloading github.com/dave/dst v0.27.3
go: downloading github.com/gostaticanalysis/analysisutil v0.7.1
go: downloading github.com/go-toolsmith/astcast v1.1.0
go: downloading github.com/gobwas/glob v0.2.3
go: downloading dev.gaijin.team/go/golib v0.8.1
go: downloading github.com/go-toolsmith/astcopy v1.1.0
go: downloading github.com/go-toolsmith/astequal v1.2.0
go: downloading github.com/go-toolsmith/astfmt v1.1.0
go: downloading github.com/go-toolsmith/astp v1.1.0
go: downloading github.com/go-toolsmith/strparse v1.1.0
go: downloading github.com/go-toolsmith/typep v1.1.0
go: downloading github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727
go: downloading github.com/Masterminds/semver/v3 v3.4.0
go: downloading github.com/ccojocar/zxcvbn-go v1.0.4
go: downloading github.com/gostaticanalysis/comment v1.5.0
go: downloading github.com/prometheus/client_golang v1.23.2
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading github.com/fatih/structtag v1.2.0
go: downloading github.com/ettle/strcase v0.2.0
go: downloading github.com/alfatraining/structtag v1.0.0
go: downloading github.com/hashicorp/go-immutable-radix/v2 v2.1.0
go: downloading github.com/ldez/structtags v0.6.1
go: downloading golang.org/x/exp/typeparams v0.0.0-20260112195511-716be5621a96
go: downloading github.com/quasilyte/gogrep v0.5.0
go: downloading github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/prometheus/common v0.67.5
go: downloading github.com/prometheus/procfs v0.19.2
go: downloading codeberg.org/chavacava/garif v0.2.0
go: downloading github.com/hashicorp/golang-lru/v2 v2.0.7
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading go.yaml.in/yaml/v2 v2.4.3
go: github.com/redhat-developer/mapt/tools imports
	github.com/golangci/golangci-lint/v2/cmd/golangci-lint imports
	github.com/golangci/golangci-lint/v2/pkg/commands imports
	github.com/golangci/golangci-lint/v2/pkg/goformatters imports
	github.com/golangci/golangci-lint/v2/pkg/goformatters/gofmt imports
	github.com/golangci/gofmt/gofmt: cannot find module providing package github.com/golangci/gofmt/gofmt

@renovate renovate Bot force-pushed the renovate/all branch 14 times, most recently from ec3f328 to 5cf9d5a Compare January 17, 2026 13:10
@renovate renovate Bot force-pushed the renovate/all branch 3 times, most recently from 543d9c4 to 1170c6a Compare January 20, 2026 00:44
@renovate
Copy link
Copy Markdown
Contributor Author

renovate Bot commented Jan 20, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Copy link
Copy Markdown
Collaborator

@adrianriobo adrianriobo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@adrianriobo adrianriobo merged commit 0552e2c into main Jan 20, 2026
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant