Skip to content

Commit c1fc730

Browse files
authored
Merge pull request #407 from asgrim/dep-update-bumps
Dep update bumps
2 parents a72c0d5 + 89973f7 commit c1fc730

File tree

8 files changed

+42
-41
lines changed

8 files changed

+42
-41
lines changed

.github/workflows/build-and-push-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: actions/checkout@v5
4646

4747
- name: Fetch built PHAR from artifacts
48-
uses: actions/download-artifact@v5
48+
uses: actions/download-artifact@v6
4949
with:
5050
name: pie-${{ github.sha }}.phar
5151

.github/workflows/build-phar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
uses: actions/attest-build-provenance@v3
6060
with:
6161
subject-path: '${{ github.workspace }}/pie.phar'
62-
- uses: actions/upload-artifact@v4
62+
- uses: actions/upload-artifact@v5
6363
with:
6464
name: pie-${{ github.sha }}.phar
6565
path: pie.phar

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Build documentation
3737
run: .github/docs/build-docs.sh
3838
- name: Fetch built PHAR from artifacts
39-
uses: actions/download-artifact@v5
39+
uses: actions/download-artifact@v6
4040
with:
4141
name: pie-${{ github.sha }}.phar
4242
- name: Verify the PHAR

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
contents: write
2727
steps:
2828
- name: Fetch built PHAR from artifacts
29-
uses: actions/download-artifact@v5
29+
uses: actions/download-artifact@v6
3030
with:
3131
name: pie-${{ github.sha }}.phar
3232
- name: Verify the PHAR

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@
3434
"fidry/cpu-core-counter": "^1.3.0",
3535
"illuminate/container": "^10.49.0",
3636
"psr/container": "^2.0.2",
37-
"symfony/console": "^6.4.26",
37+
"symfony/console": "^6.4.27",
3838
"symfony/event-dispatcher": "^6.4.25",
3939
"symfony/process": "^6.4.26",
4040
"thephpf/attestation": "^0.0.2",
41-
"webmozart/assert": "^1.12"
41+
"webmozart/assert": "^1.12.1"
4242
},
4343
"require-dev": {
4444
"ext-openssl": "*",
45-
"behat/behat": "^3.25.0",
45+
"behat/behat": "^3.26.0",
4646
"bnf/phpstan-psr-container": "^1.1",
4747
"doctrine/coding-standard": "^14.0.0",
4848
"phpstan/phpstan": "^2.1.31",

composer.lock

Lines changed: 33 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ComposerIntegration/PhpBinaryPathBasedPlatformRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ private function packageForExtension(string $name, string $prettyVersion): Compl
124124
private function detectLibraryWithPkgConfig(string $alias, string $library): void
125125
{
126126
try {
127-
$pkgConfigResult = Process::run(['pkg-config', '--print-provides', '--print-errors', $library], timeout: 10);
127+
$pkgConfigResult = Process::run(['pkg-config', '--print-provides', '--print-errors', $library], timeout: 30);
128128
} catch (ProcessFailedException) {
129129
return;
130130
}

test/unit/ComposerIntegration/PhpBinaryPathBasedPlatformRepositoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public static function installedLibraries(): array
188188
],
189189
static function (array $pkg): bool {
190190
try {
191-
Process::run(['pkg-config', '--print-provides', '--print-errors', $pkg[1]], timeout: 10);
191+
Process::run(['pkg-config', '--print-provides', '--print-errors', $pkg[1]], timeout: 30);
192192

193193
return true;
194194
} catch (ProcessFailedException) {

0 commit comments

Comments
 (0)