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
18 changes: 9 additions & 9 deletions .github/workflows/main-pm-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install tools and dependencies
run: |
Expand All @@ -54,7 +54,7 @@ jobs:

- name: Checkout musl-cross-make
if: steps.compiler-cache.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: pmmp/musl-cross-make
path: musl-cross-make
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install tools and dependencies
run: |
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
image: macos-14

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install tools and dependencies
run: |
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
runs-on: windows-2022

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Prepare download cache
id: download-cache
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Update latest tag target
run: |
Expand All @@ -292,7 +292,7 @@ jobs:
git push -f origin pm${{ inputs.pm-version-major }}-latest

- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
path: ${{ github.workspace }}
pattern: "*PHP-${{ inputs.php-version-base }}-*-PM${{ inputs.pm-version-major }}"
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
echo DATE=$(date -u +'%d %b %Y') >> $GITHUB_OUTPUT

- name: Update recommended PM release
uses: ncipollo/release-action@v1.15.0
uses: ncipollo/release-action@v1.20.0
if: ${{ inputs.special-release != 'none' }}
with:
artifacts: |
Expand All @@ -351,7 +351,7 @@ jobs:
prerelease: ${{ inputs.pm-preview == 'true' }}

- name: Update php-version PM release
uses: ncipollo/release-action@v1.15.0
uses: ncipollo/release-action@v1.20.0
with:
artifacts: |
${{ github.workspace }}/*PHP-*-PM*/*.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v5
with:
path: ${{ github.workspace }}

Expand All @@ -53,7 +53,7 @@ jobs:
echo -e "\n\n\n" >> changelog.md

- name: Create release
uses: ncipollo/release-action@v1.15.0
uses: ncipollo/release-action@v1.20.0
with:
artifacts: |
${{ github.workspace }}/*PHP-*-PM*/*.tar.gz
Expand Down
Loading