From d9b65cfa1b4b6c68ffa610048dc560491119eccb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jan 2024 00:42:50 +0000 Subject: [PATCH] Bump the github group with 1 update Bumps the github group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: github ... Signed-off-by: dependabot[bot] --- .github/workflows/build_mac.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_mac.yml b/.github/workflows/build_mac.yml index 257623f..fe84208 100644 --- a/.github/workflows/build_mac.yml +++ b/.github/workflows/build_mac.yml @@ -64,7 +64,7 @@ jobs: ref: ${{ inputs.ref }} - name: Cache Python download id: cache-python-download - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/python.pkg key: macOS-Python-${{ env.PYTHON_VERSION }} @@ -76,7 +76,7 @@ jobs: sudo installer -pkg ~/python.pkg -target / unlink /usr/local/bin/python || true ln -s /usr/local/bin/python3 /usr/local/bin/python - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/Library/Caches/pip key: ${{ runner.os }}-pip-${{ hashFiles('setup.py', 'build_requires.txt', '.github/workflows/build_mac.yml') }}