Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Fetch built PHAR from artifacts
uses: actions/download-artifact@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-phar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
coverage: none
tools: composer, box
php-version: "${{ matrix.php-version }}"
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
# Fixes `git describe` picking the wrong tag - see https://github.com/php/pie/issues/307
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
extensions: intl, sodium, zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ramsey/composer-install@v3
- name: GH token (non-Windows)
if: matrix.operating-system != 'windows-latest'
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
make -j$(nproc)
sudo make install
cd $GITHUB_WORKSPACE
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Composer Install
run: composer install --ignore-platform-reqs
- name: Run bundled PHP install test
Expand All @@ -138,7 +138,7 @@ jobs:
- '8.3'
- '8.4'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
# Fixes `git describe` picking the wrong tag - see https://github.com/php/pie/issues/307
Expand All @@ -165,7 +165,7 @@ jobs:
extensions: intl, sodium, zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ramsey/composer-install@v3
- name: Run PHPCS
run: vendor/bin/phpcs
Expand All @@ -180,7 +180,7 @@ jobs:
extensions: intl, sodium, zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ramsey/composer-install@v3
- name: Validate the composer configuration
run: composer validate --strict
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- build-phar
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build documentation
run: .github/docs/build-docs.sh
- name: Fetch built PHAR from artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# contents:write is required to create the draft release
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-tags: 'true'
ref: ${{ github.ref }}
Expand All @@ -47,7 +47,7 @@ jobs:
# contents:write is required to upload the binaries to the release.
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Fetch built PHAR from artifacts
uses: actions/download-artifact@v6
with:
Expand Down