Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/actions-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
persist-credentials: false

- name: Run zizmor
uses: zizmorcore/zizmor-action@v0.5.6
uses: zizmorcore/zizmor-action@70fb788f84895a7701f5643d103d587e460b5c99 # v0.6.3
with:
advanced-security: false
annotations: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
key: ${{ env.EXTENSIONS_CACHE_KEY }}

- name: Cache PHP extensions
uses: actions/cache@v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
key: ${{ env.EXTENSIONS_CACHE_KEY }}

- name: Cache PHP extensions
uses: actions/cache@v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
key: ${{ env.EXTENSIONS_CACHE_KEY }}

- name: Cache PHP extensions
uses: actions/cache@v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
key: ${{ env.EXTENSIONS_CACHE_KEY }}

- name: Cache PHP extensions
uses: actions/cache@v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:

- name: Upload Psalm report to GitHub Code Scanning
if: ${{ always() && hashFiles('results.sarif') != '' }}
uses: github/codeql-action/upload-sarif@v4.36.2
uses: github/codeql-action/upload-sarif@cdf488f595d80d6e07e03d4674febd5ab45fa938 # v4.37.9
with:
sarif_file: results.sarif
category: psalm
Expand Down Expand Up @@ -318,7 +318,7 @@ jobs:
key: ${{ env.EXTENSIONS_CACHE_KEY }}

- name: Cache PHP extensions
uses: actions/cache@v5
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6
with:
path: ${{ steps.extcache.outputs.dir }}
key: ${{ steps.extcache.outputs.key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
persist-credentials: false

- name: Run OpenSSF Scorecard
uses: ossf/scorecard-action@v2.4.3
uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc # v2.4.4
with:
results_file: scorecard-results.json
results_format: json
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,17 @@ history, the old changelog, and committed file changes. Older Zemit-era entries
are summarized where the commit history is too granular to be useful as
release notes.

## Unreleased

### Changed

- Raise the optional/development Guzzle baseline to `^8.2.0` and OAuth2
client to `^2.9.1`, the compatible provider release. Guzzle 8 uses PSR-7
and Promises 3 and validates request methods, headers, and options more
strictly; review custom HTTP integrations before updating.
- Update the cache, CodeQL upload, OpenSSF Scorecard, and zizmor CI actions
and pin the upgraded versions to immutable commits.

## 3.10.8 - 2026-09-21

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@
"cweagans/composer-patches": "^2.0.0",
"fakerphp/faker": "^1.24.1",
"google/recaptcha": "^1.5",
"guzzlehttp/guzzle": "^7.15.3",
"guzzlehttp/guzzle": "^8.2.0",
"jetbrains/phpstorm-attributes": "^1.3",
"joshtronic/php-loremipsum": "^3.0.0",
"league/csv": "^9.28.0",
"league/oauth2-client": "^2.9.0",
"league/oauth2-client": "^2.9.1",
"league/oauth2-facebook": "^2.2.0",
"league/oauth2-github": "^3.1.1",
"league/oauth2-google": "^5.0",
Expand Down Expand Up @@ -133,11 +133,11 @@
"cweagans/composer-patches": "^2.0.0",
"fakerphp/faker": "^1.24.1",
"google/recaptcha": "^1.5",
"guzzlehttp/guzzle": "^7.15.3",
"guzzlehttp/guzzle": "^8.2.0",
"jetbrains/phpstorm-attributes": "^1.3",
"joshtronic/php-loremipsum": "^3.0.0",
"league/csv": "^9.28.0",
"league/oauth2-client": "^2.9.0",
"league/oauth2-client": "^2.9.1",
"league/oauth2-facebook": "^2.2.0",
"league/oauth2-github": "^3.1.1",
"league/oauth2-google": "^5.0",
Expand Down
Loading