Skip to content

Commit

Permalink
Merge pull request #7 from depot/fix/max-disk-size
Browse files Browse the repository at this point in the history
fix: allow larger disk sizes
  • Loading branch information
goller authored Feb 20, 2024
2 parents 81b9d07 + fea6062 commit e856dc6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion proto/depot/core/v1/project.proto
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ message DeleteProjectRequest {
message DeleteProjectResponse {}

message CachePolicy {
int32 keep_bytes = 1;
int64 keep_bytes = 1;
int32 keep_days = 2;
}

Expand Down

0 comments on commit e856dc6

Please sign in to comment.