From 207a8b1c3456ffbb4e440cf227286bc682a0f151 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 17:36:23 +0000 Subject: [PATCH] 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/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4581b950f4..7127f083e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,7 +40,7 @@ jobs: otp-version: ${{ matrix.otp }} - name: Restore deps and _build cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | deps @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@v4 - name: Restore deps and _build cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | deps @@ -91,7 +91,7 @@ jobs: node-version: 12.x - name: Restore npm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}