Skip to content

Commit bd77634

Browse files
dependabot[bot]Alban Siffer
and
Alban Siffer
authored
Bump google.golang.org/grpc from 1.43.0 to 1.56.3 (#41)
* Bump google.golang.org/grpc from 1.43.0 to 1.56.3 Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.43.0 to 1.56.3. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.43.0...v1.56.3) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> * upgrade deps * update CI actions --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alban Siffer <[email protected]>
1 parent b3aee3a commit bd77634

File tree

9 files changed

+210
-912
lines changed

9 files changed

+210
-912
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Build (all architectures)
1010
runs-on: ubuntu-latest
1111
container:
12-
image: golang:1.17.5-alpine
12+
image: golang:1.21-alpine
1313
env:
1414
LIBPCAP_VERSION: 1.10.1
1515
LIBPCAP_DIR: /libpcap
@@ -22,7 +22,7 @@ jobs:
2222
TARGET_ARCH: x86_64-linux arm-linux aarch64-linux
2323
steps:
2424
- name: Check out code into the Go module directory
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626

2727
- name: Symbolic link to GOPATH
2828
run: ln -s $GITHUB_WORKSPACE $GOPATH/src/netspot
@@ -58,7 +58,7 @@ jobs:
5858
run: $GITHUB_WORKSPACE/dev/build/builder.sh aarch64-linux
5959

6060
- name: Upload binaries
61-
uses: actions/upload-artifact@v2
61+
uses: actions/upload-artifact@v3
6262
with:
6363
name: netspot
6464
path: bin/

.github/workflows/docker.yml

+23-23
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,29 @@ jobs:
88
runs-on: ubuntu-20.04
99

1010
steps:
11-
- name: Check out code into the Go module directory
12-
uses: actions/checkout@v2
11+
- name: Check out code into the Go module directory
12+
uses: actions/checkout@v2
1313

14-
- name: Put current version into environment
15-
run: echo "NETSPOT_VERSION=$(make print_version DEBUG=false)" >> $GITHUB_ENV
14+
- name: Put current version into environment
15+
run: echo "NETSPOT_VERSION=$(make print_version DEBUG=false)" >> $GITHUB_ENV
1616

17-
- name: Build Image
18-
id: build-image
19-
uses: redhat-actions/buildah-build@v2
20-
with:
21-
image: asiffer/netspot
22-
tags: latest ${{ env.NETSPOT_VERSION }}-${{ GITHUB_RUN_ID }}
23-
dockerfiles: |
24-
./Dockerfile
25-
build-args: |
26-
GIT_COMMIT=${{ GITHUB_RUN_ID }}
17+
- name: Build Image
18+
id: build-image
19+
uses: redhat-actions/buildah-build@v2
20+
with:
21+
image: asiffer/netspot
22+
tags: latest ${{ env.NETSPOT_VERSION }}-${{ github.run_id }}
23+
dockerfiles: |
24+
./Dockerfile
25+
build-args: |
26+
GIT_COMMIT=${{ github.run_id }}
2727
28-
- name: Push GitHub container registry
29-
id: push-to-ghcr
30-
uses: redhat-actions/push-to-registry@v2
31-
with:
32-
image: ${{ steps.build-image.outputs.image }}
33-
tags: ${{ steps.build-image.outputs.tags }}
34-
registry: ghcr.io
35-
username: asiffer
36-
password: ${{ secrets.GITHUB_TOKEN }}
28+
- name: Push GitHub container registry
29+
id: push-to-ghcr
30+
uses: redhat-actions/push-to-registry@v2
31+
with:
32+
image: ${{ steps.build-image.outputs.image }}
33+
tags: ${{ steps.build-image.outputs.tags }}
34+
registry: ghcr.io
35+
username: asiffer
36+
password: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
name: Build docs
1010
runs-on: ubuntu-latest
11-
container: python:3.9.4-buster
11+
container: python:3.11-bullseye
1212
env:
1313
PYTHON_PACKAGES: mkdocs mkdocs-markdownextradata-plugin mkdocs-material pymdown-extensions
1414
steps:

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
build:
99
name: Build docs
1010
runs-on: ubuntu-latest
11-
container: python:3.9.4-buster
11+
container: python:3.11-bullseye
1212

1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Install dependencies
1818
run: |

.github/workflows/systemd.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111

1212
steps:
1313
- name: Check out code into the Go module directory
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Install golang
1717
uses: actions/setup-go@v2
1818
with:
19-
go-version: "1.17.5"
19+
go-version: "1.21.6"
2020

2121
- name: Install libpcap
2222
run: |

.github/workflows/tag.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
build:
99
name: Create tag
1010
runs-on: ubuntu-latest
11-
container: python:3.9.4-buster
11+
container: python:3.11-bullseye
1212

1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616

1717
- name: Create a new tag
1818
uses: "marvinpinto/action-automatic-releases@latest"

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Test
1414
runs-on: ubuntu-latest
1515
container:
16-
image: golang:1.17.5-alpine
16+
image: golang:1.21-alpine
1717
env:
1818
# SYSTEM
1919
PACKAGES: bash curl linux-headers git git-lfs flex bison wget make bluez-dev bluez libpcap libpcap-dev gcc musl-dev
@@ -27,7 +27,7 @@ jobs:
2727
run: apk update; apk add $PACKAGES
2828

2929
- name: Check out code into the Go module directory
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v4
3131

3232
- name: Symbolic link to GOPATH
3333
run: ln -s $GITHUB_WORKSPACE $GOPATH/src/netspot

go.mod

+40-49
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,58 @@
11
module github.com/asiffer/netspot
22

3-
go 1.17
3+
go 1.21
44

55
require (
66
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751
7-
github.com/asiffer/gospot v0.0.0-20210118081758-b7809e99d755
7+
github.com/asiffer/gospot v0.1.1
88
github.com/google/gopacket v1.1.19
9-
github.com/gorilla/mux v1.8.0
10-
github.com/gorilla/websocket v1.4.2
11-
github.com/influxdata/influxdb1-client v0.0.0-20200827194710-b269163b24ab
12-
github.com/knadh/koanf v1.3.3
13-
github.com/pelletier/go-toml v1.9.4
14-
github.com/rs/zerolog v1.26.1
15-
github.com/spf13/viper v1.10.1
16-
github.com/swaggo/http-swagger v1.2.6
17-
github.com/swaggo/swag v1.7.9
18-
github.com/urfave/cli/v2 v2.3.0
19-
golang.org/x/net v0.17.0
9+
github.com/gorilla/mux v1.8.1
10+
github.com/gorilla/websocket v1.5.1
11+
github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c
12+
github.com/knadh/koanf v1.5.0
13+
github.com/pelletier/go-toml v1.9.5
14+
github.com/rs/zerolog v1.32.0
15+
github.com/spf13/viper v1.18.2
16+
github.com/swaggo/http-swagger v1.3.4
17+
github.com/swaggo/swag v1.16.3
18+
github.com/urfave/cli/v2 v2.27.1
19+
golang.org/x/net v0.21.0
2020
)
2121

2222
require (
23-
cloud.google.com/go v0.99.0 // indirect
24-
cloud.google.com/go/storage v1.14.0 // indirect
2523
github.com/KyleBanks/depth v1.2.1 // indirect
26-
github.com/PuerkitoBio/purell v1.1.1 // indirect
27-
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
28-
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
29-
github.com/fsnotify/fsnotify v1.5.1 // indirect
30-
github.com/go-openapi/jsonpointer v0.19.5 // indirect
31-
github.com/go-openapi/jsonreference v0.19.6 // indirect
32-
github.com/go-openapi/spec v0.20.4 // indirect
33-
github.com/go-openapi/swag v0.19.15 // indirect
34-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
35-
github.com/golang/protobuf v1.5.2 // indirect
36-
github.com/googleapis/gax-go/v2 v2.1.1 // indirect
37-
github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8 // indirect
24+
github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect
25+
github.com/fsnotify/fsnotify v1.7.0 // indirect
26+
github.com/go-openapi/jsonpointer v0.20.2 // indirect
27+
github.com/go-openapi/jsonreference v0.20.4 // indirect
28+
github.com/go-openapi/spec v0.20.14 // indirect
29+
github.com/go-openapi/swag v0.22.9 // indirect
30+
github.com/google/go-cmp v0.6.0 // indirect
3831
github.com/hashicorp/hcl v1.0.0 // indirect
3932
github.com/josharian/intern v1.0.0 // indirect
40-
github.com/magiconair/properties v1.8.5 // indirect
33+
github.com/magiconair/properties v1.8.7 // indirect
4134
github.com/mailru/easyjson v0.7.7 // indirect
35+
github.com/mattn/go-colorable v0.1.13 // indirect
36+
github.com/mattn/go-isatty v0.0.20 // indirect
4237
github.com/mitchellh/copystructure v1.2.0 // indirect
43-
github.com/mitchellh/mapstructure v1.4.3 // indirect
38+
github.com/mitchellh/mapstructure v1.5.0 // indirect
4439
github.com/mitchellh/reflectwalk v1.0.2 // indirect
40+
github.com/pelletier/go-toml/v2 v2.1.1 // indirect
4541
github.com/russross/blackfriday/v2 v2.1.0 // indirect
46-
github.com/spf13/afero v1.7.0 // indirect
47-
github.com/spf13/cast v1.4.1 // indirect
48-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
42+
github.com/sagikazarmark/locafero v0.4.0 // indirect
43+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
44+
github.com/sourcegraph/conc v0.3.0 // indirect
45+
github.com/spf13/afero v1.11.0 // indirect
46+
github.com/spf13/cast v1.6.0 // indirect
4947
github.com/spf13/pflag v1.0.5 // indirect
50-
github.com/subosito/gotenv v1.2.0 // indirect
51-
github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2 // indirect
52-
go.opencensus.io v0.23.0 // indirect
53-
golang.org/x/exp v0.0.0-20211221223016-e29036178569 // indirect
54-
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
55-
golang.org/x/sys v0.13.0 // indirect
56-
golang.org/x/text v0.13.0 // indirect
57-
golang.org/x/tools v0.6.0 // indirect
58-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
59-
gonum.org/v1/gonum v0.9.3 // indirect
60-
google.golang.org/api v0.63.0 // indirect
61-
google.golang.org/appengine v1.6.7 // indirect
62-
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa // indirect
63-
google.golang.org/grpc v1.43.0 // indirect
64-
google.golang.org/protobuf v1.27.1 // indirect
65-
gopkg.in/ini.v1 v1.66.2 // indirect
66-
gopkg.in/yaml.v2 v2.4.0 // indirect
48+
github.com/subosito/gotenv v1.6.0 // indirect
49+
github.com/swaggo/files v1.0.1 // indirect
50+
github.com/xrash/smetrics v0.0.0-20231213231151-1d8dd44e695e // indirect
51+
go.uber.org/multierr v1.11.0 // indirect
52+
golang.org/x/exp v0.0.0-20240213143201-ec583247a57a // indirect
53+
golang.org/x/sys v0.17.0 // indirect
54+
golang.org/x/text v0.14.0 // indirect
55+
golang.org/x/tools v0.18.0 // indirect
56+
gopkg.in/ini.v1 v1.67.0 // indirect
57+
gopkg.in/yaml.v3 v3.0.1 // indirect
6758
)

0 commit comments

Comments
 (0)