diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 09e43b1..d5eea94 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 } @@ -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 diff --git a/README.md b/README.md index 36d6726..ffd1cf7 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ Use either of the following commands: | Image | Supported | |-------|-----------| | v1 | ❌ | -| v2 | ✅ | +| v2 | ❌ | | v3 | ✅ | | v4 | ✅ | | v5 | ✅ | @@ -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) ```