Skip to content

Commit

Permalink
Merge pull request #72 from reedy/actionscache
Browse files Browse the repository at this point in the history
workflows: Update actions/cache to v4
  • Loading branch information
vearutop authored Dec 13, 2024
2 parents c55d38a + f9a3d9b commit 01bcd1e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v2

- name: Cache vendor
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
vendor
Expand All @@ -34,4 +34,4 @@ jobs:
run: '[ -e vendor ] || composer install'

- name: Lint
run: make lint
run: make lint
4 changes: 2 additions & 2 deletions .github/workflows/test-unit-cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v2

- name: Cache vendor
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
vendor
Expand All @@ -35,4 +35,4 @@ jobs:
run: '[ -e vendor ] || composer install'

- name: Run Tests With Coverage
run: make deps test-coverage && bash <(curl -s https://codecov.io/bash)
run: make deps test-coverage && bash <(curl -s https://codecov.io/bash)
4 changes: 2 additions & 2 deletions .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v2

- name: Cache vendor
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
vendor
Expand All @@ -34,4 +34,4 @@ jobs:
run: '[ -e vendor ] || composer install'

- name: Run Tests
run: make deps test
run: make deps test

0 comments on commit 01bcd1e

Please sign in to comment.