Skip to content

Commit

Permalink
chore(deps): bump actions/cache from v2.1.4 to v2.1.5 (#2189)
Browse files Browse the repository at this point in the history
* chore(deps): bump actions/cache from v2.1.4 to v2.1.5

Bumps [actions/cache](https://github.com/actions/cache) from v2.1.4 to v2.1.5.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v2.1.4...1a9e213)

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 1, 2021
1 parent 7f7c7b7 commit eedb4d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
with:
node-version: 12
- name: Cache npm dependencies
uses: actions/cache@v2.1.4
uses: actions/cache@v2.1.5
with:
key: npm-${{ hashFiles('package-lock.json') }}
path: ~/.npm
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
node-version: 12
- name: Cache npm dependencies
uses: actions/cache@v2.1.4
uses: actions/cache@v2.1.5
with:
key: npm-${{ hashFiles('package-lock.json') }}
path: ~/.npm
Expand All @@ -41,8 +41,8 @@ jobs:
run: npm run format:fix
- name: Commit
run: |
git config user.email "actions@github.com"
git config user.name "GitHub Actions"
git config user.email "github-actions@github.com"
git config user.name "github-actions"
git add .
git commit -m "style: format files with Prettier" | true # ignore error if there are no changes to commit
git push origin HEAD:${{ github.head_ref }}
Expand All @@ -59,7 +59,7 @@ jobs:
with:
node-version: 12
- name: Cache npm dependencies
uses: actions/cache@v2.1.4
uses: actions/cache@v2.1.5
with:
key: npm-${{ hashFiles('package-lock.json') }}
path: ~/.npm
Expand All @@ -82,7 +82,7 @@ jobs:
with:
node-version: 12
- name: Cache npm dependencies
uses: actions/cache@v2.1.4
uses: actions/cache@v2.1.5
with:
key: npm-${{ hashFiles('package-lock.json') }}
path: ~/.npm
Expand All @@ -105,7 +105,7 @@ jobs:
with:
node-version: 12
- name: Cache npm dependencies
uses: actions/cache@v2.1.4
uses: actions/cache@v2.1.5
with:
key: npm-${{ hashFiles('package-lock.json') }}
path: ~/.npm
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
# https://github.com/actions/cache/issues/187 is fixed.
if: runner.os == 'Linux'
name: Cache npm dependencies
uses: actions/cache@v2.1.4
uses: actions/cache@v2.1.5
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: |
Expand Down

0 comments on commit eedb4d9

Please sign in to comment.