From 81ceea413d4005e027f03a9e6b8a72f2117ed840 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:37:36 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/linter.yml | 2 +- .github/workflows/tester.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 31fe29d..a45e23e 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -10,7 +10,7 @@ jobs: - name: Install Bun uses: oven-sh/setup-bun@v1 - name: Cache NPM dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-npm-cache diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index 383b834..4184df0 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -17,7 +17,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache NPM dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-npm-cache @@ -43,7 +43,7 @@ jobs: - name: Install Bun uses: oven-sh/setup-bun@v1 - name: Cache NPM dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-npm-cache