From 121ec1052a3a2bc092694c17b565d2e53ea591ad Mon Sep 17 00:00:00 2001 From: Rafael Matias Date: Thu, 31 Oct 2024 18:53:07 +0100 Subject: [PATCH] chore: update release-please to v4 (#2581) Should give more verbose info on the current problem with: > commit could not be parsed: b36ddc9d6c3b2baa8fe03a3f27ec5f3cae68c043 fix: handle no docker auth and log only a warning when getting auth credentials fails (#2579) As per https://github.com/googleapis/release-please/issues/2298 --------- Co-authored-by: Tedi Mitiku --- .github/workflows/release-please.yml | 8 +------- .release-please-manifest.json | 10 ++++++++++ 2 files changed, 11 insertions(+), 7 deletions(-) create mode 100644 .release-please-manifest.json diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 887b46711e..582039e2aa 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -9,16 +9,10 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'kurtosis-tech/kurtosis' steps: - - uses: google-github-actions/release-please-action@v3 + - uses: googleapis/release-please-action@v4 with: # We use the RELEASER_TOKEN so that the GitHub Actions # can run on the PR created # 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 + } + } +}