Skip to content

Commit

Permalink
Bump actions/cache from 1 to 2.1.5
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.5.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.5)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 16, 2021
1 parent 4458b3f commit 480a221
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/elixir.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
elixir: ['1.11', '1.10', '1.9']
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
- uses: actions/cache@v2.1.5
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: |
${{ runner.os }}-mix-
- uses: actions/cache@v1
- uses: actions/cache@v2.1.5
with:
path: _build/ci
key: ${{ runner.os }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
Expand All @@ -51,13 +51,13 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
- uses: actions/cache@v2.1.5
with:
path: deps
key: ${{ runner.os }}-mix-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
restore-keys: |
${{ runner.os }}-mix-
- uses: actions/cache@v1
- uses: actions/cache@v2.1.5
with:
path: _build/ci
key: ${{ runner.os }}-build-${{ hashFiles(format('{0}{1}', github.workspace, '/mix.lock')) }}
Expand Down

0 comments on commit 480a221

Please sign in to comment.