From a228111fc92e0a3dd2f1e6f625edcdd91e627bbf Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 19:57:51 +0000 Subject: [PATCH 1/3] Update dependency ubuntu to v26 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5fe1418..c49dcbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ env: jobs: lint: - runs-on: ubuntu-24.04 + runs-on: ubuntu-26.04 steps: - name: Checkout uses: actions/checkout@v7 @@ -53,7 +53,7 @@ jobs: run: hatch run lint:check unit-test: - runs-on: ubuntu-24.04 + runs-on: ubuntu-26.04 steps: - name: Checkout uses: actions/checkout@v7 @@ -74,7 +74,7 @@ jobs: # those packages to GitHub as a build artifact. The push job downloads those # artifacts and pushes them as a single multi-platform package. build: - runs-on: ubuntu-24.04 + runs-on: ubuntu-26.04 strategy: fail-fast: true matrix: @@ -129,7 +129,7 @@ jobs: # pushes them as a multi-platform package. We only push the package it the # XPKG_ACCESS_ID and XPKG_TOKEN secrets were provided. push: - runs-on: ubuntu-24.04 + runs-on: ubuntu-26.04 needs: - build steps: From df0a3a4bbde1b35d6358dd7abd656e0cfb753cc7 Mon Sep 17 00:00:00 2001 From: Bob Haddleton Date: Wed, 23 Sep 2026 11:13:15 -0500 Subject: [PATCH 2/3] Update python version to 3.14.7 Signed-off-by: Bob Haddleton --- .github/workflows/ci.yml | 2 +- pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c49dcbd..353059f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: env: # Common versions - PYTHON_VERSION: '3.13.5' + PYTHON_VERSION: '3.14.7' DOCKER_BUILDX_VERSION: 'v0.24.0' # These environment variables are important to the Crossplane CLI install.sh diff --git a/pyproject.toml b/pyproject.toml index 73e4be4..8b81bf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" name = "function" description = 'A composition function' readme = "README.md" -requires-python = ">=3.12,<3.14" +requires-python = ">=3.12,<3.15" license = "Apache-2.0" keywords = [] authors = [{ name = "Crossplane Maintainers", email = "info@crossplane.io" }] @@ -15,6 +15,7 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dependencies = [ From 6856ef7a892d36d0a02bce36655977f7720fb7a0 Mon Sep 17 00:00:00 2001 From: Bob Haddleton Date: Wed, 23 Sep 2026 11:21:43 -0500 Subject: [PATCH 3/3] Disable push on pr jobs Signed-off-by: Bob Haddleton --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 353059f..793a4bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -129,6 +129,7 @@ jobs: # pushes them as a multi-platform package. We only push the package it the # XPKG_ACCESS_ID and XPKG_TOKEN secrets were provided. push: + if: ${{ github.event_name != 'pull_request' }} runs-on: ubuntu-26.04 needs: - build