Skip to content

Commit 48da24f

Browse files
authored
Merge branch 'master' into feature/saml2-entities-2
2 parents 4438e64 + dc37bd3 commit 48da24f

File tree

560 files changed

+12594
-9035
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

560 files changed

+12594
-9035
lines changed

.gitattributes

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ codecov.yml export-ignore
88
phpcs.xml export-ignore
99
phpunit.xml export-ignore
1010
phpunit-interoperability.xml export-ignore
11-
psalm.xml export-ignore
12-
psalm-dev.xml export-ignore
11+
phpstan-baseline.neon export-ignore
12+
phpstan-baseline-dev.neon export-ignore
13+
phpstan.neon export-ignore
14+
phpstan-dev.neon export-ignore
1315
README-DEV.md export-ignore
1416
UPGRADING.md export-ignore

.github/workflows/autolock-conversations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
action:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: dessant/lock-threads@v5
21+
- uses: dessant/lock-threads@v6
2222
with:
2323
issue-inactive-days: '90'
2424
pr-inactive-days: '90'

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: [ubuntu-latest]
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323

2424
- name: Lint markdown files
2525
uses: nosborn/github-action-markdown-cli@v3

.github/workflows/interoperability.yml

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fail-fast: false
2424
matrix:
2525
operating-system: [ubuntu-latest]
26-
php-versions: ['8.2']
26+
php-versions: ['8.5']
2727

2828
steps:
2929
- name: Setup PHP, with composer and extensions
@@ -47,10 +47,10 @@ jobs:
4747
git config --global core.autocrlf false
4848
git config --global core.eol lf
4949
50-
- uses: actions/checkout@v4
50+
- uses: actions/checkout@v6
5151

5252
- name: Cache composer dependencies
53-
uses: actions/cache@v4
53+
uses: actions/cache@v5
5454
with:
5555
path: $(composer config cache-files-dir)
5656
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -69,7 +69,7 @@ jobs:
6969
7070
- name: Cache metadata
7171
id: cache-metadata
72-
uses: actions/cache@v4
72+
uses: actions/cache@v5
7373
with:
7474
path: /tmp/metadata
7575
key: ${{ runner.os }}-metadata-${{ env.date }}
@@ -80,8 +80,21 @@ jobs:
8080
run: |
8181
mkdir -p /tmp/metadata
8282
wget https://mds.edugain.org/edugain-v2.xml -O /tmp/metadata/edugain.xml
83-
wget https://technical.edugain.org/mds-v2.cer -O /tmp/metadataedugain-pub.crt
83+
wget https://technical.edugain.org/mds-v2.cer -O /tmp/metadata/edugain-pub.crt
8484
85+
- name: Download eduID metadata & public key
86+
if: steps.cache-metadata.outputs.cache-hit != 'true'
87+
run: |
88+
mkdir -p /tmp/metadata
89+
wget https://metadata.eduid.cz/entities/eduid -O /tmp/metadata/eduid.xml
90+
wget https://www.eduid.cz/docs/eduid/metadata/metadata.eduid.cz.crt.pem -O /tmp/metadata/eduid.crt
91+
92+
- name: Download eduID metadata & public key
93+
if: steps.cache-metadata.outputs.cache-hit != 'true'
94+
run: |
95+
mkdir -p /tmp/metadata
96+
wget https://metadata.eduid.cz/entities/eduid -O /tmp/metadata/eduid.xml
97+
wget https://www.eduid.cz/docs/eduid/metadata/metadata.eduid.cz.crt.pem -O /tmp/metadata/eduid.crt
8598
8699
- name: Download GRNET metadata
87100
if: steps.cache-metadata.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)