Skip to content

Commit

Permalink
Merge branch 'main' of github.com:nights99/netconf-go
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Nightingale committed Oct 5, 2024
2 parents 76fd7f7 + 142a6fe commit 716dae1
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 113 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -52,7 +52,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -66,4 +66,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@v3
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: 1.20.3

Expand Down
15 changes: 4 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ toolchain go1.23.1

require (
github.com/chzyer/readline v1.5.1
github.com/gobwas/ws v1.2.1
github.com/gobwas/ws v1.4.0
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/openconfig/goyang v1.4.5
github.com/peterh/liner v1.2.2
Expand All @@ -15,39 +15,32 @@ require (
github.com/stretchr/testify v1.9.0
golang.org/x/crypto v0.27.0
golang.org/x/sys v0.25.0 // indirect
nhooyr.io/websocket v1.8.10
nhooyr.io/websocket v1.8.17
)

require (
github.com/Juniper/go-netconf v0.3.0
github.com/gin-gonic/gin v1.9.1 // indirect
)
require github.com/Juniper/go-netconf v0.3.0

require (
github.com/nemith/netconf v0.0.2-0.20240909031326-9e1c7e00bf1a
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.18.2
github.com/ziutek/telnet v0.0.0-20180329124119-c3b780dc415b
)

require (
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/nemith/netconf v0.0.2-0.20240909031326-9e1c7e00bf1a // indirect
github.com/openconfig/gnmi v0.10.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sergi/go-diff v1.3.1 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
Expand Down
Loading

0 comments on commit 716dae1

Please sign in to comment.