From 73c40b98aea4ae6ece6c247ac3d463742879b150 Mon Sep 17 00:00:00 2001 From: Surya Date: Thu, 4 Jun 2026 13:57:56 +0530 Subject: [PATCH] feat: update action hooks versions --- pre-commit/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pre-commit/action.yaml b/pre-commit/action.yaml index a81a105..866e694 100644 --- a/pre-commit/action.yaml +++ b/pre-commit/action.yaml @@ -43,7 +43,7 @@ runs: using: "composite" steps: - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ inputs.python-version }} cache: ${{ inputs.use-cache == 'true' && 'pip' || '' }} @@ -52,7 +52,7 @@ runs: - name: Set up pre-commit cache id: cache-pre-commit if: ${{ inputs.use-cache == 'true' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ github.workspace }}/.cache/pre-commit key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}