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
5 changes: 2 additions & 3 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
- uses: actions/setup-go@v6
with:
go-version: 1.25.9
cache: false
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
6 changes: 3 additions & 3 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: 1.25.9
go-version-file: go.mod
- name: Build and test
env:
QBEE_EMAIL: ${{ secrets.QBEE_API_USER }}
Expand All @@ -25,7 +25,7 @@ jobs:
- id: govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: 1.25.9
go-version-file: go.mod
go-package: ./...
- name: golint
run: go run golang.org/x/lint/golint@latest ./...
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Install stable Go version
uses: actions/setup-go@v6
with:
go-version: stable
go-version-file: go.mod

- name: Build binary
run: go build $GCFLAGS -ldflags "$LDFLAGS" -o ${{ env.NAME }} ./cmd
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Install stable Go version
uses: actions/setup-go@v6
with:
go-version: stable
go-version-file: go.mod

- name: Setup DigiCert KeyLocker
shell: bash
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Install stable Go version
uses: actions/setup-go@v6
with:
go-version: stable
go-version-file: go.mod

- name: Build binary for ${{ matrix.arch }}
env:
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module go.qbee.io/client

go 1.25.9
go 1.26

require (
github.com/xtaci/smux v1.5.57
go.qbee.io/transport v1.26.18
golang.org/x/term v0.42.0
go.qbee.io/transport v1.26.25
golang.org/x/term v0.44.0
)

require golang.org/x/sys v0.43.0 // indirect
require golang.org/x/sys v0.46.0 // indirect
12 changes: 6 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
github.com/xtaci/smux v1.5.57 h1:N72VbGoSYxgcm6mPOYX0QzEZNVD3UI/JlVvAtXF+WrY=
github.com/xtaci/smux v1.5.57/go.mod h1:IGQ9QYrBphmb/4aTnLEcJby0TNr3NV+OslIOMrX825Q=
go.qbee.io/transport v1.26.18 h1:ARoJhCBRjdQM9WTW2T6ia/pmmBfhCt0nUkSZlpvCykg=
go.qbee.io/transport v1.26.18/go.mod h1:SBtAKI5/BjXrXYGRDT04gSjyZxQiuvRApSDeFWeelh4=
golang.org/x/sys v0.43.0 h1:Rlag2XtaFTxp19wS8MXlJwTvoh8ArU6ezoyFsMyCTNI=
golang.org/x/sys v0.43.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
golang.org/x/term v0.42.0 h1:UiKe+zDFmJobeJ5ggPwOshJIVt6/Ft0rcfrXZDLWAWY=
golang.org/x/term v0.42.0/go.mod h1:Dq/D+snpsbazcBG5+F9Q1n2rXV8Ma+71xEjTRufARgY=
go.qbee.io/transport v1.26.25 h1:HUckZV5Umn6bFulEZ+sGx13RFJr2ZtfDLkFikxDaR58=
go.qbee.io/transport v1.26.25/go.mod h1:SBtAKI5/BjXrXYGRDT04gSjyZxQiuvRApSDeFWeelh4=
golang.org/x/sys v0.46.0 h1:noSf2Fq6F8DBgS+LysIkx7rIExoNHJsxOAtPp4rthXw=
golang.org/x/sys v0.46.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
golang.org/x/term v0.44.0 h1:0rLvDRCtNj0gZkyIXhCyOb2OAzEhLVqc4B+hrsBhrmc=
golang.org/x/term v0.44.0/go.mod h1:7ze4MdzUzLXpSAoFP1H0bOI9aXDqveSvatT5vKcFh2Y=
Loading