Skip to content

Commit 028b231

Browse files
chore(actions)(deps): bump actions/cache from 3 to 5 (#89)
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c918554 commit 028b231

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/js.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- if: inputs.cacheEnabled
4040
name: Cache dependencies
4141
id: npm-cache
42-
uses: actions/cache@v3
42+
uses: actions/cache@v5
4343
with:
4444
path: ./node_modules
4545
key: npm-modules-${{ hashFiles('package-lock.json') }}

.github/workflows/npm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- if: inputs.cacheEnabled
8080
name: Cache dependencies
8181
id: npm-cache
82-
uses: actions/cache@v3
82+
uses: actions/cache@v5
8383
with:
8484
path: ./node_modules
8585
key: npm-modules-${{ hashFiles('package-lock.json') }}

.github/workflows/terraform.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Terraform Format
3030
run: terraform fmt -recursive -check
3131
- name: Cache plugin dir
32-
uses: actions/cache@v3
32+
uses: actions/cache@v5
3333
with:
3434
path: ~/.tflint.d/plugins
3535
key: tflint-${{ hashFiles('.tflint.hcl') }}

0 commit comments

Comments
 (0)