Skip to content

Commit 28eec8c

Browse files
authored
Merge pull request #528 from asgrim/dep-updates
Dependency updates
2 parents 1fa74f0 + 7fa3aa6 commit 28eec8c

7 files changed

Lines changed: 87 additions & 86 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: actions/checkout@v6
4646

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

@@ -90,7 +90,7 @@ jobs:
9090
labels: ${{ steps.meta.outputs.labels }}
9191

9292
- name: Generate artifact attestation
93-
uses: actions/attest-build-provenance@v3
93+
uses: actions/attest@v4
9494
with:
9595
subject-name: ghcr.io/${{ github.repository }}
9696
subject-digest: ${{ steps.build-and-push.outputs.digest }}

.github/workflows/build-assets.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ jobs:
5656
# code, which would store attestation that `php/pie` built the PHAR, and
5757
# it would look genuine. So this should NOT run for PR builds.
5858
if: github.event_name != 'pull_request'
59-
uses: actions/attest-build-provenance@v3
59+
uses: actions/attest@v4
6060
with:
6161
subject-path: '${{ github.workspace }}/pie.phar'
62-
- uses: actions/upload-artifact@v6
62+
- uses: actions/upload-artifact@v7
6363
with:
6464
name: pie-${{ github.sha }}.phar
6565
path: pie.phar
@@ -124,7 +124,7 @@ jobs:
124124
echo "PIE_BINARY_OUTPUT=pie-${{ runner.os }}-${{ runner.arch }}.exe" >> $env:GITHUB_ENV
125125
126126
- name: Grab the pie.phar from artifacts
127-
uses: actions/download-artifact@v7
127+
uses: actions/download-artifact@v8
128128
with:
129129
name: pie-${{ github.sha }}.phar
130130

@@ -151,11 +151,11 @@ jobs:
151151
# code, which would store attestation that `php/pie` built the binaries,
152152
# and it would look genuine. So this should NOT run for PR builds.
153153
if: github.event_name != 'pull_request'
154-
uses: actions/attest-build-provenance@v3
154+
uses: actions/attest@v4
155155
with:
156156
subject-path: '${{ github.workspace }}/${{ env.PIE_BINARY_OUTPUT }}'
157157

158-
- uses: actions/upload-artifact@v6
158+
- uses: actions/upload-artifact@v7
159159
with:
160160
name: pie-${{ github.sha }}-${{ runner.os }}-${{ runner.arch }}.bin
161161
path: ${{ env.PIE_BINARY_OUTPUT }}

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
- name: Build documentation
3838
run: .github/docs/build-docs.sh
3939
- name: Fetch built PHAR from artifacts
40-
uses: actions/download-artifact@v7
40+
uses: actions/download-artifact@v8
4141
with:
4242
name: pie-${{ github.sha }}.phar
4343
- name: Fetch the executable PIEs from artifacts
44-
uses: actions/download-artifact@v7
44+
uses: actions/download-artifact@v8
4545
with:
4646
path: executable-pie-binaries
4747
pattern: pie-${{ github.sha }}-*.bin

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ jobs:
4949
steps:
5050
- uses: actions/checkout@v6
5151
- name: Fetch built PHAR from artifacts
52-
uses: actions/download-artifact@v7
52+
uses: actions/download-artifact@v8
5353
with:
5454
name: pie-${{ github.sha }}.phar
5555
- name: Fetch the executable PIEs from artifacts
56-
uses: actions/download-artifact@v7
56+
uses: actions/download-artifact@v8
5757
with:
5858
path: executable-pie-binaries
5959
pattern: pie-${{ github.sha }}-*.bin

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
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.32",
37+
"symfony/console": "^6.4.34",
3838
"symfony/event-dispatcher": "^6.4.32",
3939
"symfony/process": "^6.4.33",
4040
"thephpf/attestation": "^0.0.5",
@@ -45,8 +45,8 @@
4545
"behat/behat": "^3.29.0",
4646
"bnf/phpstan-psr-container": "^1.1",
4747
"doctrine/coding-standard": "^14.0.0",
48-
"phpstan/phpstan": "^2.1.38",
49-
"phpstan/phpstan-phpunit": "^2.0",
48+
"phpstan/phpstan": "^2.1.40",
49+
"phpstan/phpstan-phpunit": "^2.0.16",
5050
"phpstan/phpstan-webmozart-assert": "^2.0",
5151
"phpunit/phpunit": "^10.5.63"
5252
},

0 commit comments

Comments
 (0)