From 83cafc8a69b225d501a0ba763c5cf75289b611e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 03:36:00 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8b10f4e..0a01e17 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -80,7 +80,7 @@ jobs: "dir=$(pip cache dir)" >> $env:GITHUB_OUTPUT - name: Cache python dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.pip-cache.outputs.dir || steps.pip-cache-win.outputs.dir }} key: ${{ runner.os }}-pip-${{ matrix.python-version }} @@ -99,7 +99,7 @@ jobs: shell: python - name: Cache cibuildwheel tools - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.cibuildwheel-cache.outputs.dir }} key: ${{ runner.os }}-cibuildwheel-${{ matrix.python-version }}