Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/block_major_releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
pull-requests: read
steps:
- name: Enforce Multiple Approvals for Major Releases
uses: actions/github-script@v8
uses: actions/github-script@v9

Check failure on line 18 in .github/workflows/block_major_releases.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 18 in .github/workflows/block_major_releases.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

block_major_releases.yml:18: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
script: |
const prTitle = context.payload.pull_request.title;
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
- main

jobs:
genai-mypy:

Check warning on line 13 in .github/workflows/mypy.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

mypy.yml:13: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -18,10 +18,10 @@

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7

Check failure on line 21 in .github/workflows/mypy.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 21 in .github/workflows/mypy.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

mypy.yml:21: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v7

Check failure on line 24 in .github/workflows/mypy.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 24 in .github/workflows/mypy.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

mypy.yml:24: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion .kokoro/docker/docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from ubuntu:22.04
from ubuntu:26.04

ENV DEBIAN_FRONTEND noninteractive

Expand Down
Loading