From 0b05bb61d950685fbc2e4649ae6412e8850e58cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 07:26:23 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 5 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/classic-autogpt-ci.yml | 2 +- .github/workflows/classic-benchmark-ci.yml | 2 +- .github/workflows/classic-forge-ci.yml | 2 +- .github/workflows/classic-python-checks.yml | 4 ++-- .github/workflows/claude-dependabot.yml | 6 +++--- .github/workflows/claude.yml | 6 +++--- .github/workflows/copilot-setup-steps.yml | 6 +++--- .github/workflows/docs-block-sync.yml | 2 +- .github/workflows/docs-claude-review.yml | 2 +- .github/workflows/docs-enhance.yml | 2 +- .github/workflows/platform-backend-ci.yml | 2 +- .github/workflows/platform-frontend-ci.yml | 10 +++++----- .github/workflows/platform-fullstack-ci.yml | 4 ++-- 13 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/classic-autogpt-ci.yml b/.github/workflows/classic-autogpt-ci.yml index 1a10639422..3a9ca4eee7 100644 --- a/.github/workflows/classic-autogpt-ci.yml +++ b/.github/workflows/classic-autogpt-ci.yml @@ -83,7 +83,7 @@ jobs: - name: Set up Python dependency cache # On Windows, unpacking cached dependencies takes longer than just installing them if: runner.os != 'Windows' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ runner.os == 'macOS' && '~/Library/Caches/pypoetry' || '~/.cache/pypoetry' }} key: poetry-${{ runner.os }}-${{ hashFiles('classic/original_autogpt/poetry.lock') }} diff --git a/.github/workflows/classic-benchmark-ci.yml b/.github/workflows/classic-benchmark-ci.yml index 0807620df9..9038e91392 100644 --- a/.github/workflows/classic-benchmark-ci.yml +++ b/.github/workflows/classic-benchmark-ci.yml @@ -55,7 +55,7 @@ jobs: - name: Set up Python dependency cache # On Windows, unpacking cached dependencies takes longer than just installing them if: runner.os != 'Windows' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ runner.os == 'macOS' && '~/Library/Caches/pypoetry' || '~/.cache/pypoetry' }} key: poetry-${{ runner.os }}-${{ hashFiles('classic/benchmark/poetry.lock') }} diff --git a/.github/workflows/classic-forge-ci.yml b/.github/workflows/classic-forge-ci.yml index 594c0fd076..a7f8514e86 100644 --- a/.github/workflows/classic-forge-ci.yml +++ b/.github/workflows/classic-forge-ci.yml @@ -107,7 +107,7 @@ jobs: - name: Set up Python dependency cache # On Windows, unpacking cached dependencies takes longer than just installing them if: runner.os != 'Windows' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ runner.os == 'macOS' && '~/Library/Caches/pypoetry' || '~/.cache/pypoetry' }} key: poetry-${{ runner.os }}-${{ hashFiles('classic/forge/poetry.lock') }} diff --git a/.github/workflows/classic-python-checks.yml b/.github/workflows/classic-python-checks.yml index 59d90a7fae..ceed2c38e0 100644 --- a/.github/workflows/classic-python-checks.yml +++ b/.github/workflows/classic-python-checks.yml @@ -78,7 +78,7 @@ jobs: python-version: ${{ env.min-python-version }} - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-poetry-${{ hashFiles(format('{0}/poetry.lock', matrix.sub-package)) }} @@ -130,7 +130,7 @@ jobs: python-version: ${{ env.min-python-version }} - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-poetry-${{ hashFiles(format('{0}/poetry.lock', matrix.sub-package)) }} diff --git a/.github/workflows/claude-dependabot.yml b/.github/workflows/claude-dependabot.yml index ff6935dc2d..e0cf2ba70b 100644 --- a/.github/workflows/claude-dependabot.yml +++ b/.github/workflows/claude-dependabot.yml @@ -41,7 +41,7 @@ jobs: python-version: "3.11" # Use standard version matching CI - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: poetry-${{ runner.os }}-${{ hashFiles('autogpt_platform/backend/poetry.lock') }} @@ -91,7 +91,7 @@ jobs: echo "PNPM_HOME=$HOME/.pnpm-store" >> $GITHUB_ENV - name: Cache frontend dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ runner.os }}-pnpm-${{ hashFiles('autogpt_platform/frontend/pnpm-lock.yaml', 'autogpt_platform/frontend/package.json') }} @@ -124,7 +124,7 @@ jobs: # Phase 1: Cache and load Docker images for faster setup - name: Set up Docker image cache id: docker-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/docker-cache # Use a versioned key for cache invalidation when image list changes diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 8c45f930dc..805f3d78bb 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -57,7 +57,7 @@ jobs: python-version: "3.11" # Use standard version matching CI - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: poetry-${{ runner.os }}-${{ hashFiles('autogpt_platform/backend/poetry.lock') }} @@ -107,7 +107,7 @@ jobs: echo "PNPM_HOME=$HOME/.pnpm-store" >> $GITHUB_ENV - name: Cache frontend dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ runner.os }}-pnpm-${{ hashFiles('autogpt_platform/frontend/pnpm-lock.yaml', 'autogpt_platform/frontend/package.json') }} @@ -140,7 +140,7 @@ jobs: # Phase 1: Cache and load Docker images for faster setup - name: Set up Docker image cache id: docker-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/docker-cache # Use a versioned key for cache invalidation when image list changes diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml index aac8befee0..f70fe36572 100644 --- a/.github/workflows/copilot-setup-steps.yml +++ b/.github/workflows/copilot-setup-steps.yml @@ -39,7 +39,7 @@ jobs: python-version: "3.11" # Use standard version matching CI - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: poetry-${{ runner.os }}-${{ hashFiles('autogpt_platform/backend/poetry.lock') }} @@ -89,7 +89,7 @@ jobs: echo "PNPM_HOME=$HOME/.pnpm-store" >> $GITHUB_ENV - name: Cache frontend dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ runner.os }}-pnpm-${{ hashFiles('autogpt_platform/frontend/pnpm-lock.yaml', 'autogpt_platform/frontend/package.json') }} @@ -132,7 +132,7 @@ jobs: # Phase 1: Cache and load Docker images for faster setup - name: Set up Docker image cache id: docker-cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/docker-cache # Use a versioned key for cache invalidation when image list changes diff --git a/.github/workflows/docs-block-sync.yml b/.github/workflows/docs-block-sync.yml index b1fc986ea7..4977877b19 100644 --- a/.github/workflows/docs-block-sync.yml +++ b/.github/workflows/docs-block-sync.yml @@ -33,7 +33,7 @@ jobs: python-version: "3.11" - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: poetry-${{ runner.os }}-${{ hashFiles('autogpt_platform/backend/poetry.lock') }} diff --git a/.github/workflows/docs-claude-review.yml b/.github/workflows/docs-claude-review.yml index 511c2efcd5..1643fe1c49 100644 --- a/.github/workflows/docs-claude-review.yml +++ b/.github/workflows/docs-claude-review.yml @@ -33,7 +33,7 @@ jobs: python-version: "3.11" - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: poetry-${{ runner.os }}-${{ hashFiles('autogpt_platform/backend/poetry.lock') }} diff --git a/.github/workflows/docs-enhance.yml b/.github/workflows/docs-enhance.yml index db750e78ae..4baa882cd1 100644 --- a/.github/workflows/docs-enhance.yml +++ b/.github/workflows/docs-enhance.yml @@ -38,7 +38,7 @@ jobs: python-version: "3.11" - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: poetry-${{ runner.os }}-${{ hashFiles('autogpt_platform/backend/poetry.lock') }} diff --git a/.github/workflows/platform-backend-ci.yml b/.github/workflows/platform-backend-ci.yml index f66cce8a37..a301477ecf 100644 --- a/.github/workflows/platform-backend-ci.yml +++ b/.github/workflows/platform-backend-ci.yml @@ -88,7 +88,7 @@ jobs: run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT - name: Set up Python dependency cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: poetry-${{ runner.os }}-${{ hashFiles('autogpt_platform/backend/poetry.lock') }} diff --git a/.github/workflows/platform-frontend-ci.yml b/.github/workflows/platform-frontend-ci.yml index fb7a55055e..0e9a718b38 100644 --- a/.github/workflows/platform-frontend-ci.yml +++ b/.github/workflows/platform-frontend-ci.yml @@ -45,7 +45,7 @@ jobs: run: echo "key=${{ runner.os }}-pnpm-${{ hashFiles('autogpt_platform/frontend/pnpm-lock.yaml', 'autogpt_platform/frontend/package.json') }}" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ steps.cache-key.outputs.key }} @@ -73,7 +73,7 @@ jobs: run: corepack enable - name: Restore dependencies cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ needs.setup.outputs.cache-key }} @@ -108,7 +108,7 @@ jobs: run: corepack enable - name: Restore dependencies cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ needs.setup.outputs.cache-key }} @@ -164,7 +164,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Cache Docker layers - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-frontend-test-${{ hashFiles('autogpt_platform/docker-compose.yml', 'autogpt_platform/backend/Dockerfile', 'autogpt_platform/backend/pyproject.toml', 'autogpt_platform/backend/poetry.lock') }} @@ -219,7 +219,7 @@ jobs: fi - name: Restore dependencies cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ needs.setup.outputs.cache-key }} diff --git a/.github/workflows/platform-fullstack-ci.yml b/.github/workflows/platform-fullstack-ci.yml index c888ace6c5..f64d5e33c9 100644 --- a/.github/workflows/platform-fullstack-ci.yml +++ b/.github/workflows/platform-fullstack-ci.yml @@ -44,7 +44,7 @@ jobs: run: echo "key=${{ runner.os }}-pnpm-${{ hashFiles('autogpt_platform/frontend/pnpm-lock.yaml', 'autogpt_platform/frontend/package.json') }}" >> $GITHUB_OUTPUT - name: Cache dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ steps.cache-key.outputs.key }} @@ -88,7 +88,7 @@ jobs: docker compose -f ../docker-compose.yml --profile local --profile deps_backend up -d - name: Restore dependencies cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.pnpm-store key: ${{ needs.setup.outputs.cache-key }}