Skip to content

Commit

Permalink
build(deps): bump the actions group across 1 directory with 2 updates
Browse files Browse the repository at this point in the history
Bumps the actions group with 2 updates in the / directory: [external/bpf_conformance](https://github.com/Alan-Jowett/bpf_conformance) and [external/ebpf-verifier](https://github.com/alan-jowett/ebpf-verifier).


Updates `external/bpf_conformance` from `514fa97` to `9222222`
- [Release notes](https://github.com/Alan-Jowett/bpf_conformance/releases)
- [Commits](Alan-Jowett/bpf_conformance@514fa97...9222222)

Updates `external/ebpf-verifier` from `e92408c` to `3f78808`
- [Commits](Alan-Jowett/ebpf-verifier@e92408c...3f78808)

---
updated-dependencies:
- dependency-name: external/bpf_conformance
  dependency-type: direct:production
  dependency-group: actions
- dependency-name: external/ebpf-verifier
  dependency-type: direct:production
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 21, 2024
1 parent 0aa26cd commit b145aa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion external/ebpf-verifier
Submodule ebpf-verifier updated 82 files
+5 −1 README.md
+1 −1 ebpf-samples
+1 −1 external/bpf_conformance
+1 −1 external/libbtf
+253 −183 src/asm_cfg.cpp
+99 −71 src/asm_files.cpp
+5 −0 src/asm_files.hpp
+1 −2 src/asm_marshal.cpp
+174 −112 src/asm_ostream.cpp
+0 −58 src/asm_ostream.hpp
+8 −24 src/asm_parse.cpp
+1 −20 src/asm_parse.hpp
+29 −157 src/asm_syntax.hpp
+8 −7 src/asm_unmarshal.cpp
+15 −15 src/assertions.cpp
+27 −19 src/config.hpp
+3 −9 src/crab/array_domain.cpp
+0 −2 src/crab/array_domain.hpp
+119 −519 src/crab/cfg.hpp
+440 −0 src/crab/ebpf_checker.cpp
+67 −2,686 src/crab/ebpf_domain.cpp
+35 −140 src/crab/ebpf_domain.hpp
+2,442 −0 src/crab/ebpf_transformer.cpp
+49 −81 src/crab/fwd_analyzer.cpp
+6 −2 src/crab/fwd_analyzer.hpp
+2 −1 src/crab/interval.hpp
+94 −0 src/crab/label.hpp
+86 −58 src/crab/split_dbm.cpp
+3 −6 src/crab/split_dbm.hpp
+9 −10 src/crab/thresholds.cpp
+1 −1 src/crab/thresholds.hpp
+1 −1 src/crab/type_domain.cpp
+1 −1 src/crab/type_encoding.hpp
+5 −4 src/crab/var_factory.cpp
+1 −0 src/crab/variable.hpp
+25 −8 src/crab/wto.cpp
+8 −5 src/crab/wto.hpp
+8 −7 src/crab_utils/debug.hpp
+95 −149 src/crab_utils/graph_ops.hpp
+7 −7 src/crab_utils/heap.hpp
+0 −5 src/crab_utils/stats.cpp
+23 −4 src/crab_utils/stats.hpp
+60 −284 src/crab_verifier.cpp
+63 −48 src/crab_verifier.hpp
+1 −1 src/linux/gpl/spec_prototypes.cpp
+20 −18 src/linux/linux_platform.cpp
+2 −0 src/linux/linux_platform.hpp
+47 −25 src/main/check.cpp
+22 −19 src/main/linux_verifier.cpp
+1 −1 src/main/run_yaml.cpp
+0 −16 src/main/utils.hpp
+17 −11 src/spec_type_descriptors.hpp
+1 −1 src/string_constraints.hpp
+57 −107 src/test/ebpf_yaml.cpp
+1 −2 src/test/ebpf_yaml.hpp
+1 −1 src/test/test_conformance.cpp
+0 −1 src/test/test_marshal.cpp
+0 −1 src/test/test_print.cpp
+75 −54 src/test/test_verify.cpp
+24 −61 src/test/test_wto.cpp
+1 −1 src/test/test_yaml.cpp
+6 −79 test-data/add.yaml
+35 −46 test-data/assign.yaml
+86 −86 test-data/atomic.yaml
+7 −14 test-data/call.yaml
+4 −4 test-data/calllocal.yaml
+7 −14 test-data/callx.yaml
+11 −20 test-data/full64.yaml
+61 −136 test-data/jump.yaml
+62 −106 test-data/loop.yaml
+34 −53 test-data/movsx.yaml
+43 −16 test-data/packet.yaml
+41 −60 test-data/pointer.yaml
+11 −20 test-data/sdivmod.yaml
+7 −10 test-data/sext.yaml
+70 −309 test-data/shift.yaml
+12 −14 test-data/stack.yaml
+3 −4 test-data/subtract.yaml
+12 −22 test-data/udivmod.yaml
+38 −41 test-data/uninit.yaml
+6 −6 test-data/unop.yaml
+196 −224 test-data/unsigned.yaml

0 comments on commit b145aa1

Please sign in to comment.