Skip to content
Open
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
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ jobs:
- ubuntu-22.04
- ubuntu-22.04-arm
build:
- { tag: 'v2.3', php: '8.2', distro: bullseye, version-override: "", latest-tag: false, hardened: true }
- { tag: '2.x', php: '8.2', distro: bullseye, version-override: "v2-dev", latest-tag: false, hardened: false }
- { tag: 'v3.8', php: '8.2', distro: bookworm, version-override: "", latest-tag: true, hardened: true }
- { tag: 'v3.8', php: '8.3', distro: bookworm, version-override: "", latest-tag: true, hardened: true }
- { tag: '3.x', php: '8.2', distro: bookworm, version-override: "v3-dev", latest-tag: false, hardened: false }
Expand Down Expand Up @@ -582,7 +580,7 @@ jobs:
exit 0
fi

# The report covers EVERY published stable release (v2.3 … v5.2) regardless of
# The report covers EVERY published stable release (v3.8 … v5.2) regardless of
# which branch dispatched the run, but it is committed to the dispatching
# branch. GitHub Pages serves one branch, so a run dispatched from anywhere
# other than REPORT_BRANCH updates a copy nobody reads and leaves the published
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Use either of the following commands:
| Image | Supported |
|-------|-----------|
| v1 | ❌ |
| v2 | |
| v2 | |
| v3 | ✅ |
| v4 | ✅ |
| v5 | ✅ |
Expand All @@ -122,9 +122,9 @@ We are basing our images on top of the official PHP and Debian images and provid
### PHP images
```text
php8.2-latest # always use the latest PHP 8.2 image
php8.2-v2 # always point to the latest minor version of v2
php8.2-v2.0 # pin to specific image version, always using the latest bugfixes from PHP 8.2
php8.2.5-v2.0 # pin to a specific PHP version & image version
php8.3-v3 # always point to the latest minor version of v3
php8.3-v3.8 # pin to specific image version, always using the latest bugfixes from PHP 8.3
php8.3.5-v3.8 # pin to a specific PHP version & image version
php8.2-dev # development image (build from the default branch)
```

Expand Down
Loading