Skip to content

Commit e6bca18

Browse files
dependabot[bot]tvdijen
authored andcommitted
Bump the all-actions group with 2 updates (#401)
Bumps the all-actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Fix type
1 parent 36018e6 commit e6bca18

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494

9595
- name: Save coverage data
9696
if: ${{ matrix.php-versions == '8.5' }}
97-
uses: actions/upload-artifact@v6
97+
uses: actions/upload-artifact@v7
9898
with:
9999
name: coverage-data
100100
path: ${{ github.workspace }}/build
@@ -254,7 +254,7 @@ jobs:
254254
steps:
255255
- uses: actions/checkout@v6
256256

257-
- uses: actions/download-artifact@v7
257+
- uses: actions/download-artifact@v8
258258
with:
259259
name: coverage-data
260260
path: ${{ github.workspace }}/build

src/XML/samlp/Response.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,10 @@ class Response extends AbstractStatusResponse implements SchemaValidatableElemen
4949
* @param \SimpleSAML\SAML2\Type\SAMLAnyURIValue|null $destination
5050
* @param \SimpleSAML\SAML2\Type\SAMLAnyURIValue|null $consent
5151
* @param \SimpleSAML\SAML2\XML\samlp\Extensions $extensions
52-
* @param (\SimpleSAML\SAML2\XML\saml\Assertion|\SimpleSAML\SAML2\XML\saml\EncryptedAssertion)[] $assertions
52+
* @param (
53+
* \SimpleSAML\XMLSecurity\XML\SignableElementInterface
54+
* &(\SimpleSAML\SAML2\XML\saml\Assertion|\SimpleSAML\SAML2\XML\saml\EncryptedAssertion)
55+
* )[] $assertions
5356
*/
5457
final public function __construct(
5558
IDValue $id,

0 commit comments

Comments
 (0)