Skip to content

Commit

Permalink
Update to use actions/checkout v4 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpdude authored Jan 18, 2024
1 parent 02315a3 commit d91e8b5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
php-version: ${{ env.PHP_VERSION }}
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache Composer Dependencies
uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fix-cs-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-version-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
with:
php-version: ${{ matrix.php }}
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: composer install --dry-run
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
php-version: 7.4
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install PHIVE
run: |
wget --quiet -O phive.phar https://phar.io/releases/phive.phar
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
php-version: ${{ matrix.php }}
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Cache Composer Dependencies
uses: actions/cache@v3
with:
Expand Down

0 comments on commit d91e8b5

Please sign in to comment.