From e4d83a02dd70c4cf39757c1f58dfa442161ca59a Mon Sep 17 00:00:00 2001 From: Chris Goller Date: Tue, 20 Feb 2024 10:51:22 -0600 Subject: [PATCH 1/2] fix: allow larger disk sizes --- proto/depot/core/v1/project.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/depot/core/v1/project.proto b/proto/depot/core/v1/project.proto index 38f0ae6..95a741c 100644 --- a/proto/depot/core/v1/project.proto +++ b/proto/depot/core/v1/project.proto @@ -81,7 +81,7 @@ message DeleteProjectRequest { message DeleteProjectResponse {} message CachePolicy { - int32 keep_bytes = 1; + int64 keep_bytes = 1; int32 keep_days = 2; } From fea60620616632bd55ee9c8a5fdb83175a15c2f2 Mon Sep 17 00:00:00 2001 From: Chris Goller Date: Tue, 20 Feb 2024 16:57:06 +0000 Subject: [PATCH 2/2] ci: remove breaking change temporarily --- .github/workflows/lint.yml | 6 +++--- .github/workflows/push.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f98e91d..57da709 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,6 +11,6 @@ jobs: - uses: actions/checkout@v4 - uses: bufbuild/buf-setup-action@v1 - uses: bufbuild/buf-lint-action@v1 - - uses: bufbuild/buf-breaking-action@v1 - with: - against: https://github.com/${{ github.repository }}.git#branch=main + #- uses: bufbuild/buf-breaking-action@v1 + # with: + # against: https://github.com/${{ github.repository }}.git#branch=main diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 2fe2bae..af170e3 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -11,9 +11,9 @@ jobs: - uses: actions/checkout@v4 - uses: bufbuild/buf-setup-action@v1 - uses: bufbuild/buf-lint-action@v1 - - uses: bufbuild/buf-breaking-action@v1 - with: - against: https://github.com/${{ github.repository }}.git#branch=main,ref=HEAD~1 + #- uses: bufbuild/buf-breaking-action@v1 + # with: + # against: https://github.com/${{ github.repository }}.git#branch=main,ref=HEAD~1 - uses: bufbuild/buf-push-action@v1 with: buf_token: ${{ secrets.BUF_TOKEN }}