We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1cfc4c commit acf5dd4Copy full SHA for acf5dd4
.github/workflows/run-tests.yml
@@ -39,17 +39,17 @@ jobs:
39
echo "Test Data: sdk-test-data@${TEST_DATA_BRANCH_NAME}"
40
echo "SDK Branch: php-sdk@${SDK_BRANCH_NAME}"
41
42
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v5
43
with:
44
- repository: Eppo-exp/php-sdk
45
- ref: ${{ env.SDK_BRANCH_NAME}}
+ repository: ${{ github.event.pull_request.head.repo.full_name || 'Eppo-exp/php-sdk' }}
+ ref: ${{ env.SDK_BRANCH_NAME }}
46
47
- name: Validate composer.json and composer.lock
48
run: composer validate --strict
49
50
- name: Cache Composer packages
51
id: composer-cache
52
- uses: actions/cache@v3
+ uses: actions/cache@v4
53
54
path: vendor
55
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
0 commit comments