Skip to content

Commit 0870fdd

Browse files
committed
Update CI/CD dependencies
1 parent 9122c6d commit 0870fdd

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/format_php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
ref: ${{ github.head_ref }}
1919

2020
# mtime needs to be restored for PHP-CS-Fixer cache to work correctly
21-
- name: Restore mtimes
22-
uses: weirdan/git-restore-mtime-action@master
21+
- name: Restore timestamps
22+
uses: chetan/git-restore-mtime-action@v2
2323

2424
- name: Setup PHP
2525
uses: shivammathur/setup-php@v2

.github/workflows/psalm.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,8 @@ jobs:
3030
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_4_LICENSE_KEY }}"
3131
composer install -n --prefer-dist
3232
33+
- name: Restore timestamps
34+
uses: chetan/git-restore-mtime-action@v2
35+
3336
- name: Run Psalm
3437
run: ./vendor/bin/psalm --shepherd

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [ 8.4, 8.3, 8.2, 8.1 ]
12-
laravel: [ 10.*, 11.* ]
11+
php: [ 8.4, 8.3, 8.2 ]
12+
laravel: [ 11.* ]
1313
dependency-version: [ prefer-stable ]
1414
include:
1515
- laravel: 11.*
@@ -35,7 +35,7 @@ jobs:
3535
- name: Install dependencies
3636
run: |
3737
composer config "http-basic.nova.laravel.com" "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_4_LICENSE_KEY }}"
38-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench-core:${{ matrix.testbench }}" --no-interaction --no-update
38+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
3939
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
4040
env:
4141
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}

0 commit comments

Comments
 (0)