From 3112d0ddc45c1b07488fdef3dbcda2c9d7b30c46 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Jul 2025 03:02:15 +0000 Subject: [PATCH 1/4] Bump simplesamlphp/simplesamlphp-test-framework in the all-actions group Bumps the all-actions group with 1 update: [simplesamlphp/simplesamlphp-test-framework](https://github.com/simplesamlphp/simplesamlphp-test-framework). Updates `simplesamlphp/simplesamlphp-test-framework` from 1.9.2 to 1.9.3 - [Commits](https://github.com/simplesamlphp/simplesamlphp-test-framework/compare/v1.9.2...v1.9.3) --- updated-dependencies: - dependency-name: simplesamlphp/simplesamlphp-test-framework dependency-version: 1.9.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 664d225..a3abba8 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -20,7 +20,7 @@ jobs: matrix: php-version: ['8.1', '8.2', '8.3', '8.4'] - uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_phplinter.yml@v1.9.2 + uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_phplinter.yml@v1.9.3 with: php-version: ${{ matrix.php-version }} @@ -29,7 +29,7 @@ jobs: strategy: fail-fast: false - uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_linter.yml@v1.9.2 + uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_linter.yml@v1.9.3 with: enable_eslinter: false enable_jsonlinter: true From fb4832014c5deef4b2dc12a3fdba30d0a7c9df6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 06:29:02 +0000 Subject: [PATCH 2/4] Bump the all-actions group with 2 updates Bumps the all-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/php.yml | 12 ++++++------ .github/workflows/reusable_linter.yml | 8 ++++---- .github/workflows/reusable_phplinter.yml | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index a3abba8..a4ddc44 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -69,7 +69,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" @@ -132,7 +132,7 @@ jobs: git config --global core.autocrlf false git config --global core.eol lf - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV" @@ -168,7 +168,7 @@ jobs: - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" @@ -226,7 +226,7 @@ jobs: - name: Setup problem matchers for PHP run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Get composer cache directory run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" @@ -255,9 +255,9 @@ jobs: runs-on: [ubuntu-latest] needs: [unit-tests-linux] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 with: name: coverage-data path: ${{ github.workspace }}/build diff --git a/.github/workflows/reusable_linter.yml b/.github/workflows/reusable_linter.yml index 17b87bb..2b16bce 100644 --- a/.github/workflows/reusable_linter.yml +++ b/.github/workflows/reusable_linter.yml @@ -70,7 +70,7 @@ jobs: node-version: latest - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 repository: ${{ inputs.repository }} @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 repository: ${{ inputs.repository }} @@ -111,7 +111,7 @@ jobs: node-version: latest - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 repository: ${{ inputs.repository }} @@ -132,7 +132,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 repository: ${{ inputs.repository }} diff --git a/.github/workflows/reusable_phplinter.yml b/.github/workflows/reusable_phplinter.yml index 7c880f1..8c9cf3d 100644 --- a/.github/workflows/reusable_phplinter.yml +++ b/.github/workflows/reusable_phplinter.yml @@ -31,7 +31,7 @@ jobs: run: exit 1 - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 repository: ${{ inputs.repository }} From fe61e29f6f47380a768ffa1c619ec61e9cb549db Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Tue, 19 Aug 2025 23:08:06 +0200 Subject: [PATCH 3/4] Install zip-extension --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index a4ddc44..9309d73 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -116,7 +116,7 @@ jobs: with: php-version: ${{ matrix.php-versions }} extensions: ctype, dom, date, fileinfo, filter, hash, json, mbstring, mysql, openssl, pcre, \ - pdo, pdo_sqlite, posix, soap, spl, xdebug, xml + pdo, pdo_sqlite, posix, soap, spl, xdebug, xml, zip tools: composer ini-values: error_reporting=E_ALL coverage: none From 48e2fe311b59d5dc5da729175920035fe9a36276 Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Thu, 21 Aug 2025 16:14:44 +0200 Subject: [PATCH 4/4] Bump PHP version to 8.2 and update dependencies accordingly --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index ebdc1e8..8ffbfe7 100644 --- a/composer.json +++ b/composer.json @@ -21,16 +21,16 @@ } }, "require": { - "php": "^8.1", + "php": "^8.2", "ext-curl": "*", "phpstan/extension-installer": "^1.4", - "phpstan/phpstan": "^1.11", - "phpstan/phpstan-mockery": "^1.1", - "phpunit/phpunit": "^10.0 || ^11.0", - "psr/log": "^2.0 || ^3.0", - "slevomat/coding-standard": "^8.15", - "symfony/phpunit-bridge": "^6.4 || ^7.0" + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpunit/phpunit": "^11.5 || ^12.3", + "psr/log": "^3.0", + "slevomat/coding-standard": "^8.20", + "symfony/phpunit-bridge": "^7.3 || ^8.0" }, "require-dev": { "simplesamlphp/simplesamlphp": "^2.4"