From a7800803eb5a1a7146536156bd56e1af978f4075 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 21:30:17 +0000 Subject: [PATCH] Bump actions/cache from 2 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 2 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/v2...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/static-analysis.yml | 6 +++--- .github/workflows/test.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index d981143..32e42a3 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -45,13 +45,13 @@ jobs: otp-version: ${{ matrix.otp }} - name: Restore deps cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: deps key: ${{ runner.os }}-mix-{{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} - name: Restore _build cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: _build key: ${{ runner.os }}-build-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} @@ -72,7 +72,7 @@ jobs: run: mix deps.compile - name: Restore Dialyzer cache - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: priv/plts key: ${{ runner.os }}-dialyzer-${{ matrix.otp }}-${{ matrix.elixir }}-${{ hashFiles('**/mix.lock') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 68bd7a8..a0e0b4e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -73,7 +73,7 @@ jobs: otp-version: ${{ matrix.otp }} - name: Restore build and deps caches - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | deps @@ -119,7 +119,7 @@ jobs: otp-version: ${{ matrix.otp }} - name: Restore build and deps caches - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | deps