Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.0 KiB
35 lines
1.0 KiB
name: Clear expensive caches to prevent unbounded growth |
|
|
|
on: |
|
schedule: |
|
# Run every 4 months at 10 AM UTC (2 AM PDT) |
|
- cron: 0 10 1 */4 * |
|
|
|
# manual |
|
workflow_dispatch: |
|
|
|
permissions: |
|
contents: read |
|
|
|
jobs: |
|
bazel-repository-cache: |
|
strategy: |
|
fail-fast: false # Don't cancel all jobs if one fails. |
|
matrix: |
|
os: [ubuntu-latest, macos-latest, windows-latest] |
|
name: Clear Bazel repository cache ${{ runner.os }} |
|
runs-on: ${{ matrix.os }} |
|
permissions: |
|
actions: write # permission is required to delete caches |
|
contents: read |
|
steps: |
|
- uses: actions/cache@627f0f41f6904a5b1efbaed9f96d9eb58e92e920 # v3.2.4 |
|
with: |
|
path: ${{ github.workspace }}/${{ steps.output.outputs.repository-cache }} |
|
key: repository-cache-${{ github.ref_name }}-${{ runner.os }}-reset-${{ github.sha }} |
|
|
|
- name: Create an empty cache with a single file |
|
run: | |
|
rm -rf .repository-cache |
|
mkdir -p .repository-cache' |
|
touch .repository-cache/reset_file
|
|
|