Skip to content

Commit

Permalink
Merge pull request #25 from nucleos/dependabot/github_actions/actions…
Browse files Browse the repository at this point in the history
…/cache-v2

Bump actions/cache from v1 to v2
  • Loading branch information
core23 committed Jun 12, 2020
2 parents 1fd2a46 + 6ccb301 commit bdcd8cb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: composer validate --strict

- name: "Cache dependencies installed with composer"
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/.composer/cache
key: php${{ matrix.php-version }}-composer-
Expand All @@ -53,7 +53,7 @@ jobs:
run: mkdir -p .build/php-cs-fixer

- name: "Cache cache directory for friendsofphp/php-cs-fixer"
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: .build/php-cs-fixer
key: php${{ matrix.php-version }}-php-cs-fixer-
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
php-version: ${{ matrix.php-version }}

- name: "Cache dependencies installed with composer"
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/.composer/cache
key: ${{ matrix.php-version }}-composer-
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
php-version: ${{ matrix.php-version }}

- name: "Cache dependencies installed with composer"
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/.composer/cache
key: php${{ matrix.php-version }}-composer-
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
php-version: ${{ matrix.php-version }}

- name: "Cache dependencies installed with composer"
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/.composer/cache
key: php${{ matrix.php-version }}-composer-
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
php-version: ${{ matrix.php-version }}

- name: "Cache dependencies installed with composer"
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/.composer/cache
key: php${{ matrix.php-version }}-composer-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: sudo apt-get install python-dev build-essential

- name: "Cache pip"
uses: actions/cache@v1
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('docs/requirements.txt') }}
Expand Down

0 comments on commit bdcd8cb

Please sign in to comment.