-
-
Notifications
You must be signed in to change notification settings - Fork 46
Bump deps #407
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
Bump deps #407
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -10,10 +10,10 @@ jobs: | |||||
| lint: | ||||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - uses: actions/checkout@v4 | ||||||
| - uses: actions/setup-go@v5 | ||||||
| - uses: actions/checkout@v6 | ||||||
| - uses: actions/setup-go@v6 | ||||||
| with: | ||||||
| go-version: '1.24.x' | ||||||
| go-version: '1.26.x' | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Useful? React with 👍 / 👎. |
||||||
| - name: golangci-lint | ||||||
| uses: golangci/golangci-lint-action@v7 | ||||||
| with: | ||||||
|
|
@@ -22,10 +22,10 @@ jobs: | |||||
| test: | ||||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - uses: actions/checkout@v4 | ||||||
| - uses: actions/setup-go@v5 | ||||||
| - uses: actions/checkout@v6 | ||||||
| - uses: actions/setup-go@v6 | ||||||
| with: | ||||||
| go-version: '1.24.x' | ||||||
| go-version: '1.26.x' | ||||||
|
||||||
| go-version: '1.26.x' | |
| go-version: '1.25.x' |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -14,15 +14,15 @@ jobs: | |||||
| runs-on: ubuntu-latest | ||||||
| if: "startsWith(github.ref, 'refs/tags/v')" | ||||||
| steps: | ||||||
| - uses: actions/checkout@v4 | ||||||
| - uses: actions/checkout@v6 | ||||||
| with: | ||||||
| fetch-depth: 0 | ||||||
| - run: git fetch --force --tags | ||||||
| - uses: actions/setup-go@v5 | ||||||
| - uses: actions/setup-go@v6 | ||||||
| with: | ||||||
| go-version: '1.24.x' | ||||||
| go-version: '1.26.x' | ||||||
|
||||||
| go-version: '1.26.x' | |
| go-version: '1.25.x' |
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 pinned to Go 1.26.x, but the module's go.mod declares Go 1.25.0. If 1.25 is the minimum supported version, consider running lint on 1.25.x (or using a version matrix for 1.25.x + 1.26.x) so CI doesn't accidentally rely on newer compiler/tooling behavior than consumers will have.