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.
This pull request includes several updates to the GitHub Actions workflows, Dockerfile, and documentation to modernize dependencies and improve the build process. The most important changes include updating the Go version, modifying GitHub Actions to use newer versions, and updating the
Dockerfile
and documentation accordingly.GitHub Actions Updates:
.github/dependabot.yml
: Added configuration for Dependabot to automate dependency updates for GitHub Actions, Go modules, and Docker..github/workflows/go.yml
: Updated the Go setup action to use version 5 and changed the Go version to 1.23..github/workflows/integration.yml
: Updated the checkout action to version 4..github/workflows/publish.yml
: Updated the checkout action to version 4 and the Docker Buildx setup action to version 3..github/workflows/test.yml
: Updated the Go setup action to use version 5, changed the Go version to 1.23, and improved the test command to include race detection and shuffling.Dockerfile Update:
Dockerfile
: Updated the base image to use Go 1.23 and removed thego get
command as it is no longer necessary.Documentation Update:
README.md
: Updated references to Go 1.13 to Go 1.23 and adjusted the example commands accordingly.Module Initialization:
go.mod
: Initialized the Go module and set the Go version to 1.23.2.