From b28b0f6045c008fc81936abe8a0a3305331e993c Mon Sep 17 00:00:00 2001 From: Rafael Matias Date: Thu, 31 Oct 2024 17:46:34 +0100 Subject: [PATCH 1/5] chore: update release-please to v4 --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 887b46711e..e514bdba1c 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'kurtosis-tech/kurtosis' steps: - - uses: google-github-actions/release-please-action@v3 + - uses: google-github-actions/release-please-action@v4 with: # We use the RELEASER_TOKEN so that the GitHub Actions # can run on the PR created From fdb23cb7df3d63aa0e446d5cfa9a754fc05c910a Mon Sep 17 00:00:00 2001 From: Tedi Mitiku Date: Thu, 31 Oct 2024 09:51:39 -0700 Subject: [PATCH 2/5] trigger ci From 432064bcb8733d38dbdb3f22997f39b29c7d44db Mon Sep 17 00:00:00 2001 From: Rafael Matias Date: Thu, 31 Oct 2024 17:54:14 +0100 Subject: [PATCH 3/5] fix: release please - use new repo --- .github/workflows/release-please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index e514bdba1c..1727252084 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'kurtosis-tech/kurtosis' steps: - - uses: google-github-actions/release-please-action@v4 + - uses: googleapis/release-please-action@v4 with: # We use the RELEASER_TOKEN so that the GitHub Actions # can run on the PR created From a0316b97f8ba1b6284e0738d78d21d05947c6803 Mon Sep 17 00:00:00 2001 From: Rafael Matias Date: Thu, 31 Oct 2024 18:03:12 +0100 Subject: [PATCH 4/5] ci: release please, update config for v4 --- .github/workflows/release-please.yml | 6 ------ .release-please-manifest.json | 10 ++++++++++ 2 files changed, 10 insertions(+), 6 deletions(-) create mode 100644 .release-please-manifest.json diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 1727252084..582039e2aa 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -16,9 +16,3 @@ jobs: # https://github.com/kurtosis-tech/kurtosis/issues/688 token: "${{ secrets.RELEASER_TOKEN }}" release-type: simple - package-name: kurtosis - bump-minor-pre-major: false - bump-patch-for-minor-pre-major: false - # Our CI, Docker Images, Kurtosis-SDK bumps all depend on - # non v tags - include-v-in-tag: false diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 0000000000..5a1a3f6b2d --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,10 @@ +{ + "packages": { + ".": { + "package-name": "kurtosis", + "bump-minor-pre-major": false, + "bump-path-for-minor-pre-major": false, + "include-v-in-tag": false + } + } +} From f1446e16dd4b38b104ba751387d5f0f4367384ed Mon Sep 17 00:00:00 2001 From: Tedi Mitiku Date: Thu, 31 Oct 2024 10:09:20 -0700 Subject: [PATCH 5/5] trigger ci