From 1846975bfa37062433377e6863b8bb3e0e68541e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 16:42:25 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/action.yml | 4 ++-- .github/workflows/docs.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index ef62e08c..6ef6181d 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -20,14 +20,14 @@ jobs: - name: Cache choosenim id: cache-choosenim - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.choosenim key: ${{ runner.os }}-choosenim-${{ matrix.nim-version}} - name: Cache nimble id: cache-nimble - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.nimble key: ${{ runner.os }}-nimble-${{ matrix.nim-version}}-${{ hashFiles('prologue.nimble') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 09f76b88..6fd5fc08 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -26,7 +26,7 @@ jobs: run: echo "::set-output name=dir::$(pip cache dir)" - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.pip-cache.outputs.dir }} key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} @@ -53,14 +53,14 @@ jobs: - name: Cache choosenim id: cache-choosenim - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.choosenim key: ${{ runner.os }}-choosenim-stable - name: Cache nimble id: cache-nimble - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.nimble key: ${{ runner.os }}-nimble-${{ hashFiles('prologue.nimble') }}