Skip to content

Commit

Permalink
[Upgraded] PHP Compatibility to Node v16 (Ref:#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbragg committed Oct 20, 2022
1 parent 9268c14 commit 7fdb67c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/php-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
steps:

- name: "Checks out the repository."
uses: "actions/checkout@v2"
uses: "actions/checkout@v3.1.0"

- name: "Set up PHP"
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@2.21.2
with:
php-version: ${{ matrix.php-version }}
coverage: none
Expand All @@ -48,10 +48,10 @@ jobs:
- name: "Get Composer Cache Directory."
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: "Sets up Caching."
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php-composer-build-${{ hashFiles('composer.json') }}
Expand Down Expand Up @@ -90,10 +90,10 @@ jobs:
steps:

- name: "Checks out the repository."
uses: "actions/checkout@v2"
uses: "actions/checkout@v3.1.0"

- name: "Set up PHP"
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@2.21.2
with:
php-version: ${{ matrix.php-version }}
coverage: none
Expand All @@ -116,10 +116,10 @@ jobs:
- name: "Get Composer Cache Directory."
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: "Sets up Caching."
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php-composer-build-${{ hashFiles('composer.json') }}
Expand Down

0 comments on commit 7fdb67c

Please sign in to comment.