-
Notifications
You must be signed in to change notification settings - Fork 3
updating gofrs/uuid package #79
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,7 +20,7 @@ jobs: | |
| - name: Set up Go | ||
| uses: actions/setup-go@v6 | ||
| with: | ||
| go-version: '1.25' | ||
| go-version: '1.26' | ||
|
||
|
|
||
| - name: Test | ||
| run: docker compose -f docker-compose.${{ matrix.driver }}.yml run test | ||
| run: docker compose -f docker-compose.${{ matrix.driver }}.yml run test | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ import ( | |
| "context" | ||
| "database/sql" | ||
| "fmt" | ||
| "github.com/gofrs/uuid" | ||
| "github.com/gofrs/uuid/v5" | ||
| mssql "github.com/microsoft/go-mssqldb" | ||
| "github.com/microsoft/go-mssqldb/msdsn" | ||
| "io/ioutil" | ||
|
Comment on lines
4
to
10
|
||
|
|
||
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.
CI is now pinned to Go 1.26 while go.mod declares Go 1.25.7. If the project intends to support/build with the version in go.mod, consider using
go-version-file: go.mod(or settinggo-versionto 1.25.x) so CI matches the module's declared minimum and avoids accidental version skew.