Skip to content

Commit 388f6e7

Browse files
committed
cachev4
1 parent 467c36b commit 388f6e7

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

.github/workflows/bc-check.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ on:
99
- main
1010

1111
jobs:
12-
backwards-compatibility-check:
13-
name: "Backwards Compatibility Check"
14-
runs-on: ubuntu-latest
15-
steps:
16-
- uses: actions/checkout@v2
17-
with:
18-
fetch-depth: 0
19-
- name: "Install PHP"
20-
uses: shivammathur/setup-php@v2
21-
with:
22-
php-version: "8.3"
23-
- name: "Install dependencies"
24-
run: "composer install"
25-
- name: "Install BC check"
26-
run: "composer require --dev roave/backward-compatibility-check"
27-
- name: "Check for BC breaks"
28-
run: "vendor/bin/roave-backward-compatibility-check"
12+
backwards-compatibility-check:
13+
name: "Backwards Compatibility Check"
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 0
19+
- name: "Install PHP"
20+
uses: shivammathur/setup-php@v2
21+
with:
22+
php-version: "8.3"
23+
- name: "Install dependencies"
24+
run: "composer install"
25+
- name: "Install BC check"
26+
run: "composer require --dev roave/backward-compatibility-check"
27+
- name: "Check for BC breaks"
28+
run: "vendor/bin/roave-backward-compatibility-check"

.github/workflows/phpstan.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.3'
19+
php-version: "8.3"
2020
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, intl
2121
coverage: none
2222

2323
- name: Cache composer dependencies
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: vendor
2727
key: composer-${{ hashFiles('composer.lock') }}

.github/workflows/pint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
coverage: none
2222

2323
- name: Cache composer dependencies
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: vendor
2727
key: composer-${{ hashFiles('composer.lock') }}

0 commit comments

Comments
 (0)