Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/main-php-matrix-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:

- name: Checkout PHP build SDK
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: php/php-sdk-binary-tools
ref: php-sdk-${{ env.PHP_SDK_BINARY_TOOLS_VER }} #TODO: probably should update this, but haven't tested newer versions
path: php-sdk

- name: Checkout PHP
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
repository: php/php-src
ref: "php-${{ inputs.php }}"
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
#- "jit-tracing" #borked until 8.3 due to php-src bugs

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

- name: Fetch PHP build cache
uses: actions/cache/restore@v4 #fails if cache is missing
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-php-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Fetch PHP build cache
uses: actions/cache/restore@v4 #fails if cache is missing
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Restore PHP build cache
uses: actions/cache@v4
Expand Down
Loading