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