Skip to content

GH Actions: version update for actions/cache #59

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2

- name: Restore/cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: vendor
key: all-build-${{ hashFiles('**/composer.lock') }}
Expand All @@ -22,7 +22,7 @@ jobs:
all-build-

- name: Restore/cache tools folder
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: tools
key: all-tools-${{ github.sha }}
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
coverage: pcov

- name: Restore/cache tools folder
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: tools
key: all-tools-${{ github.sha }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- uses: actions/checkout@v2

- name: Restore/cache tools folder
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: tools
key: all-tools-${{ github.sha }}
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Restore/cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: vendor
key: all-build-${{ hashFiles('**/composer.lock') }}
Expand All @@ -139,7 +139,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Restore/cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: vendor
key: all-build-${{ hashFiles('**/composer.lock') }}
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
- name: fetch tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Restore/cache vendor folder
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: vendor
key: all-build-${{ hashFiles('**/composer.lock') }}
Expand Down