Skip to content

Commit

Permalink
Merge pull request #39 from dr5hn/patch-1
Browse files Browse the repository at this point in the history
fix: Deprecation Errors in CI Action
  • Loading branch information
swalkinshaw authored Feb 2, 2024
2 parents 9ad6c27 + a06a218 commit 5b8542e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
coverage: xdebug
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v2
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-8.0.x-composer-${{ hashFiles('**/composer.json') }}
Expand Down

0 comments on commit 5b8542e

Please sign in to comment.