Skip to content

Commit cc0d213

Browse files
committed
update action versions
1 parent 71c10f0 commit cc0d213

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/php-cs-fixer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
with:
1313
ref: ${{ github.head_ref }}
1414

.github/workflows/run-tests-mysql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
4242

4343
steps:
44-
- uses: actions/checkout@v3
44+
- uses: actions/checkout@v4
4545

4646
- name: Install PHP versions
4747
uses: shivammathur/setup-php@v2
@@ -53,7 +53,7 @@ jobs:
5353
run: |
5454
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5555
56-
- uses: actions/cache@v3
56+
- uses: actions/cache@v4
5757
id: actions-cache
5858
with:
5959
path: ${{ steps.composer-cache.outputs.dir }}

.github/workflows/run-tests-postgres.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
4343

4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646

4747
- name: Install PHP versions
4848
uses: shivammathur/setup-php@v2
@@ -54,7 +54,7 @@ jobs:
5454
run: |
5555
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
5656
57-
- uses: actions/cache@v3
57+
- uses: actions/cache@v4
5858
id: actions-cache
5959
with:
6060
path: ${{ steps.composer-cache.outputs.dir }}
@@ -63,7 +63,7 @@ jobs:
6363
${{ runner.os }}-composer-
6464
6565
- name: Cache PHP dependencies
66-
uses: actions/cache@v3
66+
uses: actions/cache@v4
6767
id: vendor-cache
6868
with:
6969
path: vendor

.github/workflows/run-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
8080

8181
steps:
82-
- uses: actions/checkout@v3
82+
- uses: actions/checkout@v4
8383

8484
- name: Install PHP versions
8585
uses: shivammathur/setup-php@v2
@@ -91,7 +91,7 @@ jobs:
9191
run: |
9292
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
9393
94-
- uses: actions/cache@v3
94+
- uses: actions/cache@v4
9595
id: actions-cache
9696
with:
9797
path: ${{ steps.composer-cache.outputs.dir }}

0 commit comments

Comments
 (0)