mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-10 09:07:35 +00:00
Update actions/cache action to v2 (#711)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
This commit is contained in:
parent
12f986d8f9
commit
b8cfe1ae43
3 changed files with 4 additions and 4 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -17,7 +17,7 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
- name: Cache node_modules
|
||||
uses: actions/cache@v1.1.0
|
||||
uses: actions/cache@v2.1.2
|
||||
with:
|
||||
path: node_modules
|
||||
key: node_modules
|
||||
|
|
4
.github/workflows/e2e.yml
vendored
4
.github/workflows/e2e.yml
vendored
|
@ -13,12 +13,12 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Cache build
|
||||
uses: actions/cache@v1.1.0
|
||||
uses: actions/cache@v2.1.2
|
||||
with:
|
||||
path: build
|
||||
key: build
|
||||
- name: Cache node_modules
|
||||
uses: actions/cache@v1.1.0
|
||||
uses: actions/cache@v2.1.2
|
||||
with:
|
||||
path: node_modules
|
||||
key: node_modules
|
||||
|
|
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
- name: Cache node_modules
|
||||
uses: actions/cache@v1.1.0
|
||||
uses: actions/cache@v2.1.2
|
||||
with:
|
||||
path: node_modules
|
||||
key: node_modules
|
||||
|
|
Loading…
Add table
Reference in a new issue