From 9f71babe62645d661c0479486ddd98f7e974b38a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 07:08:31 +0000 Subject: [PATCH] chore(actions)(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/js.yaml | 2 +- .github/workflows/npm.yaml | 2 +- .github/workflows/terraform.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/js.yaml b/.github/workflows/js.yaml index 8074f7a..c352f05 100644 --- a/.github/workflows/js.yaml +++ b/.github/workflows/js.yaml @@ -45,7 +45,7 @@ jobs: - if: inputs.cacheEnabled name: Cache dependencies id: npm-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./node_modules key: npm-modules-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/npm.yaml b/.github/workflows/npm.yaml index 0d8b8b3..38b322d 100644 --- a/.github/workflows/npm.yaml +++ b/.github/workflows/npm.yaml @@ -85,7 +85,7 @@ jobs: - if: inputs.cacheEnabled name: Cache dependencies id: npm-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./node_modules key: npm-modules-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/terraform.yaml b/.github/workflows/terraform.yaml index 091aab2..161f4e3 100644 --- a/.github/workflows/terraform.yaml +++ b/.github/workflows/terraform.yaml @@ -35,7 +35,7 @@ jobs: - name: Terraform Format run: terraform fmt -recursive -check - name: Cache plugin dir - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.tflint.d/plugins key: tflint-${{ hashFiles('.tflint.hcl') }}