From f7ba7a9f76988747734c030d0a0129f7da995689 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Sat, 7 Feb 2026 15:59:09 -0800 Subject: [PATCH 1/2] mkmaintainer: properly use venv managed by pre-commit Signed-off-by: Benjamin Gilbert --- .github/maintainer/mkmaintainer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/maintainer/mkmaintainer.py b/.github/maintainer/mkmaintainer.py index 050229d..5a09953 100755 --- a/.github/maintainer/mkmaintainer.py +++ b/.github/maintainer/mkmaintainer.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python from pathlib import Path from urllib.parse import urlencode From 388dcaede3fffc7554af3f0f54d9bfcceae71555 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Sat, 7 Feb 2026 15:12:33 -0800 Subject: [PATCH 2/2] workflows: switch small jobs to ubuntu-slim Save some resources. Signed-off-by: Benjamin Gilbert --- .github/workflows/java.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/java.yaml b/.github/workflows/java.yaml index b785de9..df47b09 100644 --- a/.github/workflows/java.yaml +++ b/.github/workflows/java.yaml @@ -13,7 +13,7 @@ permissions: jobs: pre-commit: name: Rerun pre-commit checks - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: Check out repo uses: actions/checkout@v5 @@ -112,7 +112,7 @@ jobs: name: Release if: github.ref_type == 'tag' needs: build - runs-on: ubuntu-latest + runs-on: ubuntu-slim concurrency: release-${{ github.ref }} permissions: contents: write