diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a37b903..3a983f8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,7 +1,7 @@ version: 2 updates: - package-ecosystem: "docker" - directory: "/8.2" + directory: "/8.3" schedule: interval: "daily" ignore: @@ -9,7 +9,7 @@ updates: update-types: ["version-update:semver-major"] - package-ecosystem: "docker" - directory: "/8.3" + directory: "/8.4" schedule: interval: "daily" ignore: @@ -17,7 +17,7 @@ updates: update-types: ["version-update:semver-major"] - package-ecosystem: "docker" - directory: "/8.4" + directory: "/8.5" schedule: interval: "daily" ignore: diff --git a/.github/workflows/packages.yml b/.github/workflows/packages.yml index 9345dfe..4828794 100644 --- a/.github/workflows/packages.yml +++ b/.github/workflows/packages.yml @@ -17,15 +17,15 @@ jobs: matrix: include: - tag: "latest" - php: "8.4" + php: "8.5" - tag: "stable" - php: "8.3" + php: "8.4" + - tag: "8.5" + php: "8.5" - tag: "8.4" php: "8.4" - tag: "8.3" php: "8.3" - - tag: "8.2" - php: "8.2" steps: - uses: actions/checkout@v3 diff --git a/8.2/Dockerfile b/8.5/Dockerfile similarity index 97% rename from 8.2/Dockerfile rename to 8.5/Dockerfile index df1fb43..d736cf2 100644 --- a/8.2/Dockerfile +++ b/8.5/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.2-alpine3.17 +FROM php:8.5-alpine3.21 # Add docker-php-extension-installer script ADD https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/ diff --git a/README.md b/README.md index 075d1cd..5c21572 100644 --- a/README.md +++ b/README.md @@ -6,11 +6,11 @@ | Tags | PHP version | Architecture | Features | |--------|-------------|-------------|-----------------------------------------------------------------------------------------------------------------| -| 8.2 | 8.2 | amd64/arm64 | ✅ Everything. | | 8.3 | 8.3 | amd64/arm64 | ✅ Everything. | | 8.4 | 8.4 | amd64/arm64 | ✅ Everything. | -| stable | **8.3** | amd64/arm64 | 🔗 Aliases the latest stable version of PHP that supports all features of this docker image. | -| latest | **8.4** | amd64/arm64 | 🔗 Aliases the latest stable version of PHP available (even if that version does not support all features yet). | +| 8.5 | 8.5 | amd64/arm64 | ✅ Everything. | +| stable | **8.4** | amd64/arm64 | 🔗 Aliases the latest stable version of PHP that supports all features of this docker image. | +| latest | **8.5** | amd64/arm64 | 🔗 Aliases the latest stable version of PHP available (even if that version does not support all features yet). | #### Use within your GitLab's pipelines.