From 9f4a58626b71d6b0e4da160e3fea3d370da9c338 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 18:02:02 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5878a3f..050a135 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,7 +23,7 @@ jobs: - name: Cache Poetry id: cache-poetry - uses: actions/cache@v4.3.0 + uses: actions/cache@v5.0.5 with: path: ~/.poetry key: ${{ runner.os }}-poetry-${{ env.POETRY_VERSION }}-${{ matrix.python-version }} @@ -35,7 +35,7 @@ jobs: - name: Cache Dependencies id: cache-deps - uses: actions/cache@v4.3.0 + uses: actions/cache@v5.0.5 with: path: ${{ github.workspace }}/.venv key: ${{ runner.os }}-poetry-${{ env.POETRY_VERSION }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} @@ -62,7 +62,7 @@ jobs: - name: Cache Poetry id: cache-poetry - uses: actions/cache@v4.3.0 + uses: actions/cache@v5.0.5 with: path: ~/.poetry key: ${{ runner.os }}-poetry-${{ env.POETRY_VERSION }}-${{ matrix.python-version }} @@ -74,7 +74,7 @@ jobs: - name: Cache Dependencies id: cache-deps - uses: actions/cache@v4.3.0 + uses: actions/cache@v5.0.5 with: path: ${{ github.workspace }}/.venv key: ${{ runner.os }}-poetry-${{ env.POETRY_VERSION }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }}