From 8338063da7c77f50cb33d9aef21c447a3a10052a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 17:05:32 +0000 Subject: [PATCH] Bump actions/cache from 4 to 5 in /.github/workflows Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/linux.yml | 6 +++--- .github/workflows/macos.yml | 4 ++-- .github/workflows/windows.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 5518b15d978..085985f12ab 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -78,7 +78,7 @@ jobs: - name: Restore cached conda packages id: restore-conda-cache if: ${{ github.event_name != 'schedule' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: #path: ${{ env.CONDA_DIR }}/envs/${{ env.CONDA_ENV_NAME }} path: ${{ env.CONDA_DIR }}/pkgs @@ -90,7 +90,7 @@ jobs: - name: Restore cached pip packages id: restore-pip-cache if: ${{ github.event_name != 'schedule' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.PIP_CACHE_DIR }} key: conda-${{ runner.os }}-${{ env.CONDA_ENV_NAME }}-${{ hashFiles('conda-envs/${{ env.CONDA_ENV_NAME }}.yml') }}-${{ hashFiles('mlos_*/pyproject.toml') }}-${{ hashFiles('mlos_*/setup.py') }}-${{ env.cache_cur_date }}-${{ env.cache_cur_hour }} @@ -101,7 +101,7 @@ jobs: - name: Restore cached pre-commit hooks id: restore-pre-commit-cache if: ${{ github.event_name != 'schedule' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pre-commit key: pre-commit-${{ runner.os }}-${{ env.CONDA_ENV_NAME }}-${{ hashFiles('conda-envs/${{ env.CONDA_ENV_NAME }}.yml') }}-${{ hashFiles('.pre-commit-config.yaml') }}-${{ env.cache_cur_date }}-${{ env.cache_cur_hour }} diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 37bd8e39e40..46104b3837b 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -83,7 +83,7 @@ jobs: - name: Restore cached conda packages id: restore-conda-cache if: ${{ github.event_name != 'schedule' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: #path: ${{ env.CONDA_DIR }}/envs/${{ env.CONDA_ENV_NAME }} path: ${{ env.CONDA_DIR }}/pkgs @@ -95,7 +95,7 @@ jobs: - name: Restore cached pip packages id: restore-pip-cache if: ${{ github.event_name != 'schedule' }} - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.PIP_CACHE_DIR }} key: conda-${{ runner.os }}-${{ env.CONDA_ENV_NAME }}-${{ hashFiles('conda-envs/${{ env.CONDA_ENV_NAME }}.yml') }}-${{ hashFiles('mlos_*/pyproject.toml') }}-${{ hashFiles('mlos_*/setup.py') }}-${{ env.cache_cur_date }}-${{ env.cache_cur_hour }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fde76116782..004de8b679a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -67,7 +67,7 @@ jobs: - name: Restore cached conda environment id: restore-conda-cache if: github.event_name != 'schedule' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.CONDA }}/envs/mlos key: conda-${{ runner.os }}-${{ env.CONDA_ENV_NAME }}-${{ hashFiles('conda-envs/${{ env.CONDA_ENV_YML }}') }}-${{ hashFiles('mlos_*/pyproject.toml') }}-${{ hashFiles('mlos_*/setup.py') }}-${{ env.cache_cur_date }}-${{ env.cache_cur_hour }}