chore(deps,tooling): Go 1.25.6, golangci-lint v2.8.0; lib updates#27
Merged
chore(deps,tooling): Go 1.25.6, golangci-lint v2.8.0; lib updates#27
Conversation
- Tooling: - .golangci.yaml: set Go to 1.25.6 - .pre-commit/golangci-lint-hook: GOLANGCI_LINT_VERSION v2.7.2 → v2.8.0 - .pre-commit/unit-test-hook: toolchain_version → 1.25.6 - .project-settings.env: GO_VERSION 1.25.6; GOLANGCI_LINT_VERSION v2.8.0; BUF_VERSION 1.63.0 - Makefile: align GO and golangci-lint versions - App deps: - go.mod/go.sum: logrus v1.9.3 → v1.9.4; golang.org/x/sys v0.39.0 → v0.40.0 No functional code changes; keeps tooling and dependencies on latest patch releases for consistency.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR attempts to update Go tooling and dependencies to newer versions, including Go 1.25.6, golangci-lint v2.8.0, and several library updates. It also includes code formatting improvements to struct tags and enhancements to GitHub Actions workflows.
Changes:
- Update Go version from 1.25.5 to 1.25.6 across multiple configuration files
- Update golangci-lint from v2.7.2 to v2.8.0
- Update dependencies: logrus v1.9.3 → v1.9.4, golang.org/x/sys v0.39.0 → v0.40.0
- Improve struct tag formatting by removing excessive whitespace
- Enhance GitHub Actions workflows with improved caching and validation steps
- Add new gitleaks security scanning workflow
- Streamline pre-commit CI configuration
Reviewed changes
Copilot reviewed 10 out of 14 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| .project-settings.env | Updated Go version, golangci-lint version, and buf version |
| Makefile | Updated Go and golangci-lint version variables |
| .golangci.yaml | Updated Go version configuration |
| .pre-commit/unit-test-hook | Updated toolchain version to 1.25.6 |
| .pre-commit/golangci-lint-hook | Updated golangci-lint version default |
| .pre-commit-config.yaml | Updated yamllint version |
| .pre-commit-ci-config.yaml | Updated yamllint and cspell versions, removed some hooks |
| .github/workflows/go.yml | Enhanced workflow with project settings loading, caching, and validation |
| .github/workflows/gitleaks.yml | Added new security scanning workflow |
| go.mod | Updated logrus and golang.org/x/sys versions |
| go.sum | Updated checksums for dependency changes |
| types.go | Cleaned up struct tag formatting |
| stack.go | Cleaned up struct tag formatting |
| format.go | Cleaned up struct tag formatting |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…in permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
…in permissions Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No functional code changes; keeps tooling and dependencies on latest patch releases for consistency.