From a59dc78dc50e182abb97244a0e4e99f951dec9ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Oct 2022 15:20:32 -0700 Subject: [PATCH] Bump actions/cache from 3.0.10 to 3.0.11 (#1029) Bumps [actions/cache](https://github.com/actions/cache) from 3.0.10 to 3.0.11. - [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.0.10...v3.0.11) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ac397ff65..6029f31ea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: with: otp-version: '25' elixir-version: '1.14' - - uses: actions/cache@v3.0.10 + - uses: actions/cache@v3.0.11 name: Setup Elixir cache with: path: | @@ -33,14 +33,14 @@ jobs: key: ${{ runner.os }}-mix-otp-25-${{ hashFiles('**/mix.lock') }} restore-keys: | ${{ runner.os }}-mix-otp-25- - - uses: actions/cache@v3.0.10 + - uses: actions/cache@v3.0.11 name: Setup ruby cache with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - - uses: actions/cache@v3.0.10 + - uses: actions/cache@v3.0.11 name: Setup Python cache with: path: ~/.cache/pip @@ -59,7 +59,7 @@ jobs: # Don't cache PLTs based on mix.lock hash, as Dialyzer can incrementally update even old ones # Cache key based on Elixir & Erlang version (also usefull when running in matrix) - name: Restore PLT cache - uses: actions/cache@v3.0.10 + uses: actions/cache@v3.0.11 id: plt_cache with: key: | @@ -114,7 +114,7 @@ jobs: with: otp-version: '25' elixir-version: '1.14' - - uses: actions/cache@v3.0.10 + - uses: actions/cache@v3.0.11 with: path: | deps