Skip to content
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

Move to forked version of go-ntlmssp module #126

Merged
merged 3 commits into from
Jun 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update Go toolchain version
  • Loading branch information
samuong committed Jun 16, 2024
commit e0de5b59f407f5347f76cb727f048120055b589d
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ 'ubuntu-latest' ]
go: [ '1.19' ]
go: [ '1.22' ]

runs-on: ${{ matrix.os }}

Expand All @@ -36,7 +36,7 @@ jobs:
strategy:
matrix:
os: [ 'macos-latest', 'ubuntu-latest', 'windows-latest' ]
go: [ '1.18', '1.19' ]
go: [ '1.22' ]

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- os: 'windows-latest'
goos: 'windows'
goarch: 'amd64'
go: [ '1.18', '1.19' ]
go: [ '1.22' ]

runs-on: ${{ matrix.target.os }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
goos: 'windows'
goarch: 'amd64'
ext: '.exe'
go: [ '1.17' ]
go: [ '1.22' ]

runs-on: ${{ matrix.target.os }}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ require (
github.com/robertkrimen/otto v0.4.0
github.com/samuong/go-ntlmssp v0.0.0-20240616070040-65a20607c744
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.24.0
golang.org/x/term v0.21.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZb
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/robertkrimen/otto v0.4.0 h1:/c0GRrK1XDPcgIasAsnlpBT5DelIeB9U/Z/JCQsgr7E=
github.com/robertkrimen/otto v0.4.0/go.mod h1:uW9yN1CYflmUQYvAMS0m+ZiNo3dMzRUDQJX0jWbzgxw=
github.com/samuong/go-ntlmssp v0.0.0-20240616021033-020f032891ef h1:1sDbz+SBpTrVX99rROA3EiW8p0+nD+TN7e0K80nmXl8=
github.com/samuong/go-ntlmssp v0.0.0-20240616021033-020f032891ef/go.mod h1:ioghl8+axI3Mx5Cs1LU/LzW18JE71qbwXwpOv/F9lCc=
github.com/samuong/go-ntlmssp v0.0.0-20240616070040-65a20607c744 h1:AD1UeK7fZRLY7TEeQQZNTuHX3RAspwLUC36mNi47Xcs=
github.com/samuong/go-ntlmssp v0.0.0-20240616070040-65a20607c744/go.mod h1:ioghl8+axI3Mx5Cs1LU/LzW18JE71qbwXwpOv/F9lCc=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
Expand Down
Loading