Skip to content

Commit ff9997d

Browse files
committed
chore(all): update deps
1 parent 932f5e7 commit ff9997d

File tree

8 files changed

+30
-30
lines changed

8 files changed

+30
-30
lines changed

.github/workflows/buildtest.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
build:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v6
2626
- name: Set up Bazel
2727
uses: bazel-contrib/[email protected]
2828
- name: Restore Bazel Cache
29-
uses: actions/cache/restore@v3
29+
uses: actions/cache/restore@v5
3030
with:
3131
path: |
3232
~/.cache/bazel
@@ -47,7 +47,7 @@ jobs:
4747
- name: Build Lemming
4848
run: bazel build //...
4949
- name: Save Bazel Cache
50-
uses: actions/cache/save@v3
50+
uses: actions/cache/save@v5
5151
if: github.ref == 'refs/heads/main'
5252
with:
5353
path: |
@@ -56,11 +56,11 @@ jobs:
5656
test:
5757
runs-on: ubuntu-latest
5858
steps:
59-
- uses: actions/checkout@v3
59+
- uses: actions/checkout@v6
6060
- name: Set up Bazel
6161
uses: bazel-contrib/[email protected]
6262
- name: Restore Bazel Cache
63-
uses: actions/cache/restore@v3
63+
uses: actions/cache/restore@v5
6464
with:
6565
path: |
6666
~/.cache/bazel
@@ -88,7 +88,7 @@ jobs:
8888
- run: |
8989
make test-race
9090
- name: Save Bazel Cache
91-
uses: actions/cache/save@v3
91+
uses: actions/cache/save@v5
9292
if: github.ref == 'refs/heads/main'
9393
with:
9494
path: |

.github/workflows/generatedcode.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
gazelle:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v6
2424
- name: Set up Bazel
2525
uses: bazel-contrib/[email protected]
2626
- name: Run Gazelle
@@ -35,11 +35,11 @@ jobs:
3535
protos:
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v6
3939
- name: Set up Bazel
4040
uses: bazel-contrib/[email protected]
4141
- name: Cache Bazel
42-
uses: actions/cache/restore@v3
42+
uses: actions/cache/restore@v5
4343
with:
4444
path: |
4545
~/.cache/bazel

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,16 @@ jobs:
2929
name: lint
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/setup-go@v4
32+
- uses: actions/setup-go@v6
3333
with:
3434
go-version: stable
3535
cache: false
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v6
3737
- name: Install pcap
3838
run: |
3939
sudo apt-get install libpcap-dev libnl-genl-3-dev libnl-3-dev
4040
- name: golangci-lint
41-
uses: golangci/golangci-lint-action@v3
41+
uses: golangci/golangci-lint-action@v9
4242
with:
4343
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
4444
version: latest

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727

2828
steps:
2929
- name: Checkout Code
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333
- name: Lint Code Base
34-
uses: github/super-linter/slim@v4
34+
uses: github/super-linter/slim@v7
3535
env:
3636
VALIDATE_ALL_CODEBASE: false
3737
VALIDATE_JSCPD: false

Dockerfile.lemming

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ FROM build as debug-build
1414
RUN go install github.com/go-delve/delve/cmd/dlv@latest
1515
RUN --mount=type=cache,target=/root/.cache/go-build go build -gcflags='all=-N -l' -o /out/lemming ./cmd/lemming
1616

17-
FROM docker.io/debian:bookworm as debug
17+
FROM docker.io/debian:trixie as debug
1818
RUN apt-get update && apt-get install -y libpcap-dev ca-certificates
1919
COPY --from=debug-build /out/lemming /lemming/lemming
2020
COPY --from=debug-build /go/bin/dlv /dlv/dlv
2121

22-
FROM docker.io/debian:bookworm as release
22+
FROM docker.io/debian:trixie as release
2323
RUN apt-get update && apt-get install -y libpcap-dev ca-certificates
2424
COPY --from=release-build /out/lemming /lemming/lemming
2525
COPY --from=release-build /build/THIRD_PARTY_LICENSES /lemming/THIRD_PARTY

WORKSPACE

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -65,24 +65,24 @@ http_archive(
6565

6666
http_archive(
6767
name = "com_google_absl",
68-
sha256 = "b396401fd29e2e679cace77867481d388c807671dc2acc602a0259eeb79b7811",
69-
strip_prefix = "abseil-cpp-20250127.1",
68+
sha256 = "9b7a064305e9fd94d124ffa6cc358592eb42b5da588fb4e07d09254aa40086db",
69+
strip_prefix = "abseil-cpp-20250512.1",
7070
urls = [
71-
"https://github.com/abseil/abseil-cpp/releases/download/20250127.1/abseil-cpp-20250127.1.tar.gz",
71+
"https://github.com/abseil/abseil-cpp/releases/download/20250512.1/abseil-cpp-20250512.1.tar.gz",
7272
],
7373
)
7474

7575
http_archive(
7676
name = "build_bazel_rules_swift",
77-
sha256 = "4901feadef8e47ede930c95c40298dd38a83a81eb1ed5b74e62abfa546ff2d1b",
78-
url = "https://github.com/bazelbuild/rules_swift/releases/download/2.8.1/rules_swift.2.8.1.tar.gz",
77+
sha256 = "6309d226474c6b9293f790d3da43d3b04dc0a71b75b87df3107871a0ea59d5f6",
78+
url = "https://github.com/bazelbuild/rules_swift/releases/download/3.4.1/rules_swift.3.4.1.tar.gz",
7979
)
8080

8181
http_archive(
8282
name = "rules_proto_grpc",
83-
sha256 = "fb7fc7a3c19a92b2f15ed7c4ffb2983e956625c1436f57a3430b897ba9864059",
84-
strip_prefix = "rules_proto_grpc-4.3.0",
85-
urls = ["https://github.com/rules-proto-grpc/rules_proto_grpc/archive/4.3.0.tar.gz"],
83+
sha256 = "a25b9992ded30441b0250b2a3e69638e94e664bffcbd77daac6dd355fc92dd17",
84+
strip_prefix = "rules_proto_grpc-5.8.0",
85+
urls = ["https://github.com/rules-proto-grpc/rules_proto_grpc/archive/5.8.0.tar.gz"],
8686
)
8787

8888
http_archive(
@@ -105,9 +105,9 @@ http_archive(
105105

106106
http_archive(
107107
name = "rules_proto",
108-
sha256 = "303e86e722a520f6f326a50b41cfc16b98fe6d1955ce46642a5b7a67c11c0f5d",
109-
strip_prefix = "rules_proto-6.0.0",
110-
url = "https://github.com/bazelbuild/rules_proto/releases/download/6.0.0/rules_proto-6.0.0.tar.gz",
108+
sha256 = "14a225870ab4e91869652cfd69ef2028277fc1dc4910d65d353b62d6e0ae21f4",
109+
strip_prefix = "rules_proto-7.1.0",
110+
url = "https://github.com/bazelbuild/rules_proto/releases/download/7.1.0/rules_proto-7.1.0.tar.gz",
111111
)
112112

113113
http_archive(

dataplane/standalone/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:bullseye
1+
FROM debian:trixie
22
RUN apt-get update && apt-get install -y --no-install-recommends build-essential=12.9 clang=1:11.0-51+nmu5 \
33
wget=1.21-1+deb11u1 protobuf-compiler=3.12.4-1+deb11u1 protobuf-compiler-grpc=1.30.2-3 \
44
libgrpc++-dev=1.30.2-3 libgoogle-glog-dev=0.4.0-4 git=1:2.30.2-1+deb11u2 openjdk-11-jdk=11.0.22+7-1~deb11u1 \

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ require (
3535
github.com/openconfig/testt v0.0.0-20220311054427-efbb1a32ec07
3636
github.com/openconfig/ygnmi v0.11.1
3737
github.com/openconfig/ygot v0.31.0
38-
github.com/osrg/gobgp/v3 v3.37.0
38+
github.com/osrg/gobgp/v4 v4.1.0
3939
github.com/p4lang/p4runtime v1.4.0-rc.5.0.20220728214547-13f0d02a521e
4040
github.com/sirupsen/logrus v1.9.3
4141
github.com/spf13/cobra v1.9.1
@@ -64,7 +64,7 @@ require (
6464
gopkg.in/yaml.v3 v3.0.1
6565
k8s.io/apimachinery v0.29.3
6666
k8s.io/client-go v0.29.3
67-
k8s.io/klog v1.0.0
67+
k8s.io/klog/v2 v2.130.1
6868
k8s.io/klog/v2 v2.120.1
6969
modernc.org/cc/v4 v4.1.3
7070
)

0 commit comments

Comments
 (0)