Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update php docker tag to v8.4 #149

Merged
merged 2 commits into from
Jan 10, 2025
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
build:
docker:
- image: php:8.3-cli-bookworm
- image: php:8.4-cli-bookworm
environment:
GOSS_FILES_STRATEGY: cp
DOCKER_VERSION: 27.3.1
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.3-cli-bookworm AS builder
FROM php:8.4-cli-bookworm AS builder

# hadolint ignore=DL3008
RUN apt-get update -qq \
Expand Down Expand Up @@ -31,7 +31,7 @@ RUN curl -L -o "/tmp/kcov.tar.gz" "https://github.com/SimonKagstrom/kcov/archive
&& cmake --build . \
&& cmake --build . --target install

FROM php:8.3-cli-bookworm
FROM php:8.4-cli-bookworm

# Upgrade all installed packages and clean up.
# hadolint ignore=DL3005
Expand Down Expand Up @@ -187,7 +187,7 @@ RUN curl -L -o "/usr/local/bin/codecov" "https://github.com/codecov/uploader/rel

# Install PCOV
# @see https://pecl.php.net/package/pcov
ENV CODECOV_VERSION=1.0.11
ENV CODECOV_VERSION=1.0.12
RUN pecl install "pcov-${CODECOV_VERSION}" && docker-php-ext-enable pcov && php -m

# Install a stub for pygmy.
Expand Down