From fcc02f78e4895c3a03429cf49515049e6f22623e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1draic=20Slattery?= Date: Wed, 31 Dec 2025 03:42:22 +0100 Subject: [PATCH] chore(deps): Update outdated GitHub Actions versions (#34544) This PR updates an outdated GitHub Action version. - Updated `astral-sh/setup-uv` from `v6` to `v7` in `.github/actions/uv_setup/action.yml` Looks like this was missed as part of https://github.com/langchain-ai/langchain/pull/33457 so hopefully safe to bring it into alignment. --- .github/actions/uv_setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/uv_setup/action.yml b/.github/actions/uv_setup/action.yml index 1d701d74282..a1087ed318f 100644 --- a/.github/actions/uv_setup/action.yml +++ b/.github/actions/uv_setup/action.yml @@ -27,7 +27,7 @@ runs: using: composite steps: - name: Install uv and set the python version - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: version: ${{ env.UV_VERSION }} python-version: ${{ inputs.python-version }}