Skip to content

Commit

Permalink
Fix dependabot issue
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbosch committed Mar 19, 2024
1 parent cc2e0a6 commit 98b15fb
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 486 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/kuksa-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ jobs:
steps:
- name: Checkout kuksa.val
uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version: '>=1.17.0'
- run: go version
- name: Run go tests
run: |
cd kuksa_go_client
Expand All @@ -50,7 +55,7 @@ jobs:
go generate .
go test .
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
version: latest
working-directory: kuksa_go_client
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
# required to grab the history of the PR
fetch-depth: 0
- uses: actions/setup-python@v3
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
with:
extra_args: --color=always --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }}
32 changes: 16 additions & 16 deletions kuksa_go_client/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,34 @@ module github.com/eclipse/kuksa.val/kuksa_go_client
go 1.18

require (
github.com/google/uuid v1.4.0
github.com/gorilla/websocket v1.5.0
github.com/spf13/viper v1.17.0
github.com/stretchr/objx v0.5.1
google.golang.org/grpc v1.59.0
google.golang.org/protobuf v1.31.0
github.com/google/uuid v1.6.0
github.com/gorilla/websocket v1.5.1
github.com/spf13/viper v1.18.2
github.com/stretchr/objx v0.5.2
google.golang.org/grpc v1.62.1
google.golang.org/protobuf v1.33.0
)

require (
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/sagikazarmark/locafero v0.3.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.10.0 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/cast v1.6.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect
golang.org/x/exp v0.0.0-20240318143956-a85f2c67cd81 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 98b15fb

Please sign in to comment.