From bab16f43a265f7b119f5644c4ce46cec7ca68642 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 23:13:18 +0200 Subject: [PATCH] Bump actions/cache from 3 to 4 (#5701) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .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 47bf44d0f1..1d681ee02e 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') }}