-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps,tooling): Go 1.25.6, golangci-lint v2.8.0; lib updates #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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>
No functional code changes; keeps tooling and dependencies on latest patch releases for consistency.