From f9a3d9b5c27728d09caf8f2836cd5519e66b864b Mon Sep 17 00:00:00 2001 From: Reedy Date: Thu, 12 Dec 2024 14:55:45 +0000 Subject: [PATCH] workflows: Update actions/cache to v4 Fixes https://github.com/swaggest/json-diff/issues/71 --- .github/workflows/lint.yml | 4 ++-- .github/workflows/test-unit-cov.yml | 4 ++-- .github/workflows/test-unit.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b147d4b..9bd6c29 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v2 - name: Cache vendor - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | vendor @@ -34,4 +34,4 @@ jobs: run: '[ -e vendor ] || composer install' - name: Lint - run: make lint \ No newline at end of file + run: make lint diff --git a/.github/workflows/test-unit-cov.yml b/.github/workflows/test-unit-cov.yml index 1fb1c48..7f22948 100644 --- a/.github/workflows/test-unit-cov.yml +++ b/.github/workflows/test-unit-cov.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v2 - name: Cache vendor - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | vendor @@ -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) \ No newline at end of file + run: make deps test-coverage && bash <(curl -s https://codecov.io/bash) diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 5696582..db8317d 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v2 - name: Cache vendor - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | vendor @@ -34,4 +34,4 @@ jobs: run: '[ -e vendor ] || composer install' - name: Run Tests - run: make deps test \ No newline at end of file + run: make deps test