From d37e7b122a52be3b1155ea594db6193092e0f3bb Mon Sep 17 00:00:00 2001 From: Vishwas Siravara Date: Wed, 20 Sep 2023 09:21:19 -0700 Subject: [PATCH 1/2] track main branch of lima submodule Signed-off-by: Vishwas Siravara --- .github/workflows/submodulesync.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/submodulesync.yaml b/.github/workflows/submodulesync.yaml index 2d5058c..48c7ea4 100644 --- a/.github/workflows/submodulesync.yaml +++ b/.github/workflows/submodulesync.yaml @@ -17,10 +17,11 @@ jobs: - name: Update sub modules run: | git submodule update --remote - (cd src/lima && git fetch --tags) - TAG=`cd src/lima && git describe --tags $(git rev-list --tags --max-count=1)` - echo "Pulling changes from release: $TAG" - (cd src/lima && git checkout $TAG) +# TODO: Track back release once lima has v0.17.3 +# (cd src/lima && git fetch --tags) +# TAG=`cd src/lima && git describe --tags $(git rev-list --tags --max-count=1)` +# echo "Pulling changes from release: $TAG" +# (cd src/lima && git checkout $TAG) - name: Create PR uses: peter-evans/create-pull-request@v5 From a614cf87db741bc40037f3033139814800d1f036 Mon Sep 17 00:00:00 2001 From: Vishwas Siravara Date: Wed, 20 Sep 2023 10:22:09 -0700 Subject: [PATCH 2/2] pin commit in lima submoudle Signed-off-by: Vishwas Siravara --- .github/workflows/submodulesync.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/submodulesync.yaml b/.github/workflows/submodulesync.yaml index 48c7ea4..44ddd89 100644 --- a/.github/workflows/submodulesync.yaml +++ b/.github/workflows/submodulesync.yaml @@ -17,7 +17,9 @@ jobs: - name: Update sub modules run: | git submodule update --remote -# TODO: Track back release once lima has v0.17.3 +# pin submodule to a commit, https://github.com/lima-vm/lima/commit/b357e260b1a03f0142c63b3e071b784ae66d5d34 + (cd src/lima && git checkout b357e260b1a03f0142c63b3e071b784ae66d5d34) +# TODO: Track back release once lima has v0.18.0 # (cd src/lima && git fetch --tags) # TAG=`cd src/lima && git describe --tags $(git rev-list --tags --max-count=1)` # echo "Pulling changes from release: $TAG"