Skip to content

Commit

Permalink
Adds single quotes around php version declaration in workflows for se…
Browse files Browse the repository at this point in the history
…tup-php.
  • Loading branch information
theenoahmason committed Jun 5, 2024
1 parent 7659b86 commit 1fa8082
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
id: setup_php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
php-version: '${{ env.PHP_VERSION }}'

# Setup Node.
- name: Setup Node
Expand Down
2 changes: 1 addition & 1 deletion package/.github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
id: setup_php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
php-version: '${{ env.PHP_VERSION }}'

# Setup Node.
- name: Setup Node
Expand Down

0 comments on commit 1fa8082

Please sign in to comment.