From 8dae22c12f39eae3b3d5ae827dd1fc61c8036479 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 03:38:50 +0000 Subject: [PATCH] Bump actions/cache from 4.2.3 to 4.3.0 Bumps [actions/cache](https://github.com/actions/cache) from 4.2.3 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.2.3...v4.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1f475f0..edb2cd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: - name: Load the cached Poetry installation id: cached-poetry - uses: actions/cache@v4.2.3 + uses: actions/cache@v4.3.0 with: path: ~/.local key: poetry-${{ env.POETRY_VERSION }}-py_${{ env.PYTHON_ID}}-0 @@ -60,7 +60,7 @@ jobs: - name: Load the cached dependencies id: cached-deps - uses: actions/cache@v4.2.3 + uses: actions/cache@v4.3.0 with: path: .venv key: py${{ matrix.python-version }}-deps-${{ hashFiles('**/poetry.lock') }}