From 24ae793dced81c00fc986d881b7488b39102ab27 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 19:02:31 +0000 Subject: [PATCH] chore(deps): 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/lintingci.yml | 2 +- .github/workflows/mirror-builtin-actors.yml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lintingci.yml b/.github/workflows/lintingci.yml index d47a9595..846e231c 100644 --- a/.github/workflows/lintingci.yml +++ b/.github/workflows/lintingci.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v7 - name: Cache plugin dir - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.tflint.d/plugins key: tflint-${{ hashFiles('.tflint.hcl') }} diff --git a/.github/workflows/mirror-builtin-actors.yml b/.github/workflows/mirror-builtin-actors.yml index a7993710..8b441eae 100644 --- a/.github/workflows/mirror-builtin-actors.yml +++ b/.github/workflows/mirror-builtin-actors.yml @@ -24,7 +24,7 @@ jobs: - name: Load cached Poetry installation id: cached-poetry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.local key: poetry-0 @@ -39,7 +39,7 @@ jobs: - name: Load cached dependencies Install id: cached-poetry-dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: scripts/mirror-actors/.venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} @@ -75,7 +75,7 @@ jobs: - name: Load cached Poetry installation id: cached-poetry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.local key: poetry-1 @@ -90,7 +90,7 @@ jobs: - name: Load cached dependencies Install id: cached-poetry-dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: scripts/mirror-actors/.venv key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}