Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: golangci-lint
uses: golangci/golangci-lint-action@ba0d7d2ec06a0ea1cb5fa41b2e4a3ab91d21278a # v9
with:
version: v2.12.2
version: v2.13.2
only-new-issues: true

can-read-secret:
Expand Down
2 changes: 1 addition & 1 deletion .golangci-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2.12.2
v2.13.2
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ repos:
- id: commitizen
stages: [commit-msg]
- repo: https://github.com/golangci/golangci-lint
rev: v2.12.2
rev: v2.13.2
hooks:
- id: golangci-lint
language_version: 1.26.5
language_version: 1.26.6
args: ["--timeout=10m"]
- id: golangci-lint-fmt
language_version: 1.26.5
language_version: 1.26.6
- repo: local
hooks:
- id: golangci-lint-ci-parity
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/devsy-org/devsy

go 1.26.5
go 1.26.6

require (
al.essio.dev/pkg/shellescape v1.6.0
Expand Down
28 changes: 9 additions & 19 deletions mise.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ lockfile_platforms = ["linux-x64"]
locked = true

[tools]
go = "1.26.5"
go = "1.26.6"
node = "24"
task = "3.53.1"
golangci-lint = "2.12.2"
golangci-lint = "2.13.2"
prek = "0.5.2"
protoc = "36.1"
gh = "2.100.0"
Expand Down
2 changes: 1 addition & 1 deletion pkg/credentials/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type CredentialsClient interface {
) (*tunnel.Message, error)
}

var _ CredentialsClient = (tunnel.TunnelClient)(nil)
var _ CredentialsClient = tunnel.TunnelClient(nil)

func RunCredentialsServer(
ctx context.Context,
Expand Down
4 changes: 2 additions & 2 deletions pkg/pty/pty_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ func (p *ptyWindows) Resize(height uint16, width uint16) error {
// Taken from: https://github.com/microsoft/hcsshim/blob/54a5ad86808d761e3e396aff3e2022840f39f9a8/internal/winapi/zsyscall_windows.go#L144
ret, _, err := procResizePseudoConsole.Call(
uintptr(p.console),
uintptr(*((*uint32)(unsafe.Pointer(&windows.Coord{
uintptr(*(*uint32)(unsafe.Pointer(&windows.Coord{
Y: int16(height),
X: int16(width),
})))),
}))),
)
if windows.Handle(ret) != windows.S_OK {
return err
Expand Down
4 changes: 2 additions & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
"matchManagers": ["pre-commit"],
"matchPackageNames": ["https://github.com/golangci/golangci-lint"],
"matchFileNames": [".pre-commit-config.yaml"],
"allowedVersions": "v2.12.2",
"allowedVersions": "v2.13.2",
"automerge": false,
"description": "keep golangci-lint aligned with the pinned Go 1.26.5 toolchain"
"description": "keep golangci-lint aligned with the pinned Go 1.26.6 toolchain"
},

{
Expand Down
Loading