Skip to content

Commit

Permalink
Bump actions
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenyeargin committed Oct 8, 2023
1 parent a3f4ea4 commit ed86be6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
php-versions: ['8.1', '8.2']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
Expand All @@ -49,7 +49,7 @@ jobs:
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Cache composer dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
# Use composer.json for key, if composer.lock is not committed.
Expand All @@ -61,9 +61,9 @@ jobs:
run: composer install --no-progress --prefer-dist --optimize-autoloader

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18.x'

- name: Install Node dependencies
run: npm ci
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
./vendor/bin/phpstan analyse --memory-limit 2G
- name: Upload test result artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: test-results-${{ matrix.php-versions }}
path: build/
Expand Down

0 comments on commit ed86be6

Please sign in to comment.