From 8e193e9cb6bbb9f6730db30421936434b985c2fb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 03:39:34 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/workflows/codecov.yml | 2 +- .github/workflows/mr-test.yml | 4 ++-- .github/workflows/python-publish.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 0801de2..7f9ce4f 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -30,7 +30,7 @@ jobs: # - name: Cache nox environments - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .nox key: ${{ runner.os }}-nox-${{ matrix.python-version }}-${{ hashFiles('**/noxfile.py') }} diff --git a/.github/workflows/mr-test.yml b/.github/workflows/mr-test.yml index b0fdf52..88ffed7 100644 --- a/.github/workflows/mr-test.yml +++ b/.github/workflows/mr-test.yml @@ -25,7 +25,7 @@ jobs: # 缓存 Poetry 依赖 - name: Cache Poetry dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-poetry-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }} @@ -34,7 +34,7 @@ jobs: # 缓存 nox 环境 - name: Cache nox environments - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .nox key: ${{ runner.os }}-nox-${{ matrix.python-version }}-${{ hashFiles('**/noxfile.py') }} diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 2db4203..724ac78 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -30,7 +30,7 @@ jobs: # 缓存 Poetry 依赖 - name: Cache Poetry dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}