From 20af294c74747a65129bb57fb0a91f8d97c4fa3f Mon Sep 17 00:00:00 2001 From: Ben Lee Date: Sat, 12 Sep 2026 21:08:47 -0700 Subject: [PATCH 1/3] Update actions/checkout to v7 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71ea9e7..ca37e51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: pre-commit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v6 with: python-version: "3.12" @@ -29,7 +29,7 @@ jobs: buildifier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: bazel-contrib/setup-bazel@0.19.0 with: bazelisk-cache: true @@ -49,7 +49,7 @@ jobs: - "9.x" runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: bazel-contrib/setup-bazel@0.19.0 with: bazelisk-cache: true From 14ab79f9abc1156d76d4a871b4cc93a03f69ddf3 Mon Sep 17 00:00:00 2001 From: Ben Lee Date: Sat, 12 Sep 2026 21:11:42 -0700 Subject: [PATCH 2/3] fixup! Update actions/checkout to v7 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ca37e51..2be72a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -76,7 +76,7 @@ jobs: - "9.x" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: bazel-contrib/setup-bazel@0.19.0 with: bazelisk-cache: true From 425734c5b8ac288346cbfa0615255030854aeecf Mon Sep 17 00:00:00 2001 From: Ben Lee Date: Sat, 12 Sep 2026 21:49:17 -0700 Subject: [PATCH 3/3] Update actions/setup-python to v7 (#39) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2be72a3..487e7fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v7 - - uses: actions/setup-python@v6 + - uses: actions/setup-python@v7 with: python-version: "3.12" - run: python -m pip install --disable-pip-version-check pre-commit