Skip to content

Commit f9a3d9b

Browse files
committed
workflows: Update actions/cache to v4
Fixes #71
1 parent c55d38a commit f9a3d9b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v2
1818

1919
- name: Cache vendor
20-
uses: actions/cache@v2
20+
uses: actions/cache@v4
2121
with:
2222
path: |
2323
vendor
@@ -34,4 +34,4 @@ jobs:
3434
run: '[ -e vendor ] || composer install'
3535

3636
- name: Lint
37-
run: make lint
37+
run: make lint

.github/workflows/test-unit-cov.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v2
1818

1919
- name: Cache vendor
20-
uses: actions/cache@v2
20+
uses: actions/cache@v4
2121
with:
2222
path: |
2323
vendor
@@ -35,4 +35,4 @@ jobs:
3535
run: '[ -e vendor ] || composer install'
3636

3737
- name: Run Tests With Coverage
38-
run: make deps test-coverage && bash <(curl -s https://codecov.io/bash)
38+
run: make deps test-coverage && bash <(curl -s https://codecov.io/bash)

.github/workflows/test-unit.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/checkout@v2
1818

1919
- name: Cache vendor
20-
uses: actions/cache@v2
20+
uses: actions/cache@v4
2121
with:
2222
path: |
2323
vendor
@@ -34,4 +34,4 @@ jobs:
3434
run: '[ -e vendor ] || composer install'
3535

3636
- name: Run Tests
37-
run: make deps test
37+
run: make deps test

0 commit comments

Comments
 (0)