Skip to content

Commit

Permalink
Merge branch 'release/v0.2.22'
Browse files Browse the repository at this point in the history
  • Loading branch information
betterthanclay committed Jul 17, 2024
2 parents fc517c8 + 28f70f5 commit 6062248
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ jobs:
ini-values: "post_max_size=256M"

- name: "Checkout code"
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Install Effigy
run: |
composer global config --no-plugins allow-plugins.phpstan/extension-installer true
composer global require decodelabs/effigy
- name: "Install dependencies"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "highest"

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
ini-values: "post_max_size=256M"

- name: "Checkout code"
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: Install Effigy
run: |
Expand All @@ -82,7 +82,7 @@ jobs:
run: "composer validate --strict"

- name: "Install dependencies"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "highest"

Expand All @@ -105,7 +105,7 @@ jobs:
ini-values: "post_max_size=256M"

- name: "Checkout code"
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"

- name: "Check EditorConfig configuration"
run: "test -f .editorconfig"
Expand All @@ -119,7 +119,7 @@ jobs:
composer global require decodelabs/effigy
- name: "Install dependencies"
uses: "ramsey/composer-install@v2"
uses: "ramsey/composer-install@v3"
with:
dependency-versions: "highest"

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.2.22 (2024-07-17)
* Updated Veneer dependency

## v0.2.21 (2024-05-07)
* Simplified JSON response format options

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"decodelabs/glitch-support": "^0.4.4",
"decodelabs/singularity": "^0.2.2",
"decodelabs/slingshot": "^0.1.1",
"decodelabs/veneer": "^0.10.19",
"decodelabs/veneer": "^0.11.1",

"psr/container": "^2.0",
"psr/http-factory": "^1.0",
Expand Down
1 change: 1 addition & 0 deletions src/Message/UploadedFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ public function moveTo(
$sapi = PHP_SAPI;

if (
// @phpstan-ignore-next-line
empty($sapi) ||
0 === strpos($sapi, 'cli') ||
!$this->file
Expand Down

0 comments on commit 6062248

Please sign in to comment.