-
Notifications
You must be signed in to change notification settings - Fork 93
update git submodules
Wesley Hayutin edited this page Jun 22, 2026
·
2 revisions
cd restic
git checkout oadp-1.6
git branch -D cve-2026-33186-oadp-1.6
cd ..This reads the branch = oadp-1.6 setting from .gitmodules, fetches from openshift/restic, and checks out the latest commit on that branch.
git submodule update --remote resticgit diff --submodule resticgit add restic
git commit -m "Update restic submodule to fix CVE-2026-33186
Update restic submodule to latest HEAD of oadp-1.6 branch,
picking up CVE fixes for google.golang.org/grpc."git push weshayutin HEAD:update-restic-submod-1.6
gh pr create --repo openshift/velero --base oadp-1.6 \
--title "Update restic submodule to fix CVE-2026-33186" \
--body "Update restic submodule to latest HEAD of oadp-1.6 branch."Note: The restic
oadp-1.6branch HEAD (8c4c3fbfe) is currently what the submodule already points to. The CVE fix commits must be merged into the resticoadp-1.6branch first (via a PR onopenshift/restic) before step 2 will pull in any changes. whayutin@fedora:~/OPENSHIFT/git/OADP/velero$