Skip to content

Commit

Permalink
update actions versions; remove prefer-source
Browse files Browse the repository at this point in the history
  • Loading branch information
jwong-dayspring committed May 22, 2024
1 parent 8997610 commit ad0ee08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- '--prefer-lowest'

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use PHP
uses: shivammathur/setup-php@v2
Expand All @@ -41,7 +41,7 @@ jobs:

- name: cache dependencies
id: cache-dependencies
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.composer }}-composer-${{ hashFiles('**/composer.lock') }}
Expand All @@ -56,7 +56,7 @@ jobs:
env:
COMPOSER_AUTH: ${{ secrets.COMPOSER_AUTH }}
COMPOSER_FLAGS: ${{ matrix.composer }}
run: composer update ${COMPOSER_FLAGS} --prefer-source
run: composer update ${COMPOSER_FLAGS}
working-directory: ./

- name: Start MySQL
Expand Down

0 comments on commit ad0ee08

Please sign in to comment.