Skip to content

Use renovate for submodule updates #1955

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,16 @@
"**/*konflux*.Dockerfile",
],
},
"git-submodules": {
"ignoreDeps": [
"falcosecurity-libs",
"collector/proto/third_party/stackrox",
],
},
"enabledManagers": [
// Restrict Renovate focus on Konflux things since we rely on GitHub's dependabot for everything else.
"tekton",
"dockerfile",
"git-submodules",
],
}
30 changes: 16 additions & 14 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[submodule "grpc"]
path = builder/third_party/grpc
url = https://github.com/grpc/grpc
branch = master
branch = v1.67.0
[submodule "third_party/abseil-cpp"]
path = builder/third_party/abseil-cpp
url = https://github.com/abseil/abseil-cpp.git
branch = master
branch = 20240722.0
[submodule "third_party/protobuf"]
path = builder/third_party/protobuf
url = https://github.com/protocolbuffers/protobuf.git
branch = main
branch = v28.3
[submodule "third_party/prometheus-cpp"]
path = builder/third_party/prometheus-cpp
url = https://github.com/jupp0r/prometheus-cpp
branch = master
branch = v1.2.4
[submodule "third_party/civetweb"]
path = builder/third_party/civetweb
url = https://github.com/civetweb/civetweb.git
branch = master
branch = v1.16
[submodule "third_party/libb64"]
path = builder/third_party/libb64
url = https://github.com/libb64/libb64.git
branch = master
branch = v1.4.1
[submodule "falcosecurity-libs"]
path = falcosecurity-libs
url = https://github.com/stackrox/falcosecurity-libs
Expand All @@ -33,38 +33,40 @@
[submodule "third_party/googletest"]
path = builder/third_party/googletest
url = https://github.com/google/googletest.git
branch = main
branch = v1.15.2
[submodule "third_party/valijson"]
path = builder/third_party/valijson
url = https://github.com/tristanpenman/valijson.git
branch = master
branch = v1.0.3
[submodule "third_party/jsoncpp"]
path = builder/third_party/jsoncpp
url = https://github.com/open-source-parsers/jsoncpp.git
branch = 1.9.6
[submodule "third_party/re2"]
path = builder/third_party/re2
url = https://github.com/google/re2.git
branch = main
branch = 2024-07-02
[submodule "third_party/libbpf"]
path = builder/third_party/libbpf
url = https://github.com/libbpf/libbpf
branch = v1.3.0
branch = v1.3.4
[submodule "builder/third_party/gperftools"]
path = builder/third_party/gperftools
url = https://github.com/gperftools/gperftools.git
branch = master
branch = gperftools-2.16
[submodule "third_party/uthash"]
path = builder/third_party/uthash
url = https://github.com/troydhanson/uthash.git
branch = v1.9.8
[submodule "builder/third_party/yaml-cpp"]
path = builder/third_party/yaml-cpp
url = https://github.com/jbeder/yaml-cpp.git
branch = master
branch = 0.8.0
[submodule "builder/third_party/c-ares"]
path = builder/third_party/c-ares
url = https://github.com/c-ares/c-ares.git
branch = main
branch = v1.34.2
[submodule "builder/third_party/tbb"]
path = builder/third_party/tbb
url = https://github.com/oneapi-src/oneTBB.git
branch = master
branch = v2022.0.0
8 changes: 4 additions & 4 deletions builder/install/versions.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#!/usr/bin/env bash

export B64_VERSION=1.2.1
export CARES_VERSION=1.34.2
export B64_VERSION=v1.4.1
export CARES_VERSION=v1.34.2
export GOOGLETEST_REVISION=v1.15.2
export GRPC_REVISION=v1.67.0
export JSONCPP_REVISION=1.9.6
export PROMETHEUS_CPP_REVISION=v1.2.4
export PROTOBUF_VERSION=v28.3
export TBB_VERSION=2022.0.0
export TBB_VERSION=v2022.0.0
export CIVETWEB_VERSION=v1.16
export ABSEIL_VERSION=20240722.0
export VALIJSON_VERSION=1.0.3
export VALIJSON_VERSION=v1.0.3
export RE2_VERSION=2024-07-02
export GPERFTOOLS_VERSION=2.16
export UTHASH_VERSION=v1.9.8
Expand Down
Loading