From ab6ecd9a60a1c936b9149603212eed9663e216d6 Mon Sep 17 00:00:00 2001 From: Richard Abrich Date: Fri, 19 Dec 2025 16:17:26 -0500 Subject: [PATCH 1/2] chore: add openadapt-ml as submodule --- .gitmodules | 3 +++ openadapt-ml | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 openadapt-ml diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..955a32b10 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "openadapt-ml"] + path = openadapt-ml + url = https://github.com/OpenAdaptAI/openadapt-ml.git diff --git a/openadapt-ml b/openadapt-ml new file mode 160000 index 000000000..e5c051617 --- /dev/null +++ b/openadapt-ml @@ -0,0 +1 @@ +Subproject commit e5c0516171f79ec7504e19329e0eb355d456a721 From b8606f399d32f1ed852f910fe8d80deff883d23b Mon Sep 17 00:00:00 2001 From: Richard Abrich Date: Fri, 19 Dec 2025 16:20:17 -0500 Subject: [PATCH 2/2] ci: update actions/cache from v2 to v4 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9a8c83bee..3be65585f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,7 +47,7 @@ jobs: - name: Cache deps id: cache-deps - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: .venv key: pydeps-${{ hashFiles('**/poetry.lock') }}