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

Bump cimg/php, nodejs and yarn versions in cicd images. #234

Merged
merged 2 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions silta-cicd/circleci-php8.1-node16-composer2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cimg/php:8.1.7
FROM cimg/php:8.1.29

# Make composer packages executable.
ENV PATH="/home/circleci/.composer/vendor/bin:${PATH}"
Expand Down Expand Up @@ -55,14 +55,14 @@ RUN curl -o /tmp/$FILENAME ${HELM_URL} \
# Install Node.js and Yarn.
# The following code is based on the CircleCI Node.js Dockerfile template:
# https://github.com/CircleCI-Public/cimg-shared/blob/main/variants/node.Dockerfile.template
ENV NODE_VERSION 16.15.1
ENV NODE_VERSION 16.20.2
RUN echo "Installing Node.js version ${NODE_VERSION}"
RUN curl -L -o node.tar.xz "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz" && \
sudo tar -xJf node.tar.xz -C /usr/local --strip-components=1 && \
rm node.tar.xz && \
sudo ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 1.22.5
ENV YARN_VERSION 1.22.22
RUN curl -L -o yarn.tar.gz "https://yarnpkg.com/downloads/${YARN_VERSION}/yarn-v${YARN_VERSION}.tar.gz" && \
sudo tar -xzf yarn.tar.gz -C /opt/ && \
rm yarn.tar.gz && \
Expand Down
10 changes: 5 additions & 5 deletions silta-cicd/circleci-php8.1-node16-composer2/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# silta-circleci
A docker image used circleCI, based on `cimg/php:8.1.7` with the following additions:
A docker image used circleCI, based on `cimg/php:8.1.29` with the following additions:

- Composer configured correctly
- Drush-launcher and coder pre-installed
Expand All @@ -9,8 +9,8 @@ A docker image used circleCI, based on `cimg/php:8.1.7` with the following addit
- Yarn

## Versions
- PHP: 8.1.7
- Composer: 2.1.12
- Node: 16.15.1
- Yarn: 1.22.5
- PHP: 8.1.29
- Composer: 2.5.1
- Node: 16.20.2
- Yarn: 1.22.22
- Helm: v3.14.0
2 changes: 1 addition & 1 deletion silta-cicd/circleci-php8.1-node16-composer2/TAGS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
circleci-php8.1-node16-composer2-v1
circleci-php8.1-node16-composer2-v1.4
circleci-php8.1-node16-composer2-v1.4.0
circleci-php8.1-node16-composer2-v1.4.1
6 changes: 3 additions & 3 deletions silta-cicd/circleci-php8.1-node18-composer2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cimg/php:8.1.23
FROM cimg/php:8.1.29

# Make composer packages executable.
ENV PATH="/home/circleci/.composer/vendor/bin:${PATH}"
Expand Down Expand Up @@ -54,14 +54,14 @@ RUN curl -o /tmp/$FILENAME ${HELM_URL} \
# Install Node.js and Yarn.
# The following code is based on the CircleCI Node.js Dockerfile template:
# https://github.com/CircleCI-Public/cimg-shared/blob/main/variants/node.Dockerfile.template
ENV NODE_VERSION 18.17.1
ENV NODE_VERSION 18.20.4
RUN echo "Installing Node.js version ${NODE_VERSION}"
RUN curl -L -o node.tar.xz "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz" && \
sudo tar -xJf node.tar.xz -C /usr/local --strip-components=1 && \
rm node.tar.xz && \
sudo ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 1.22.19
ENV YARN_VERSION 1.22.22
RUN curl -L -o yarn.tar.gz "https://yarnpkg.com/downloads/${YARN_VERSION}/yarn-v${YARN_VERSION}.tar.gz" && \
sudo tar -xzf yarn.tar.gz -C /opt/ && \
rm yarn.tar.gz && \
Expand Down
8 changes: 4 additions & 4 deletions silta-cicd/circleci-php8.1-node18-composer2/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# silta-circleci
A docker image used circleCI, based on `cimg/php:8.1.23` with the following additions:
A docker image used circleCI, based on `cimg/php:8.1.29` with the following additions:

- Composer configured correctly
- Drush-launcher and coder pre-installed
Expand All @@ -9,8 +9,8 @@ A docker image used circleCI, based on `cimg/php:8.1.23` with the following addi
- Yarn

## Versions
- PHP: 8.1.23
- PHP: 8.1.29
- Composer: 2.5.1
- Node: 18.17.1
- Yarn: 1.22.19
- Node: 18.20.4
- Yarn: 1.22.22
- Helm: v3.14.0
2 changes: 1 addition & 1 deletion silta-cicd/circleci-php8.1-node18-composer2/TAGS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
circleci-php8.1-node18-composer2-v1
circleci-php8.1-node18-composer2-v1.4
circleci-php8.1-node18-composer2-v1.4.0
circleci-php8.1-node18-composer2-v1.4.1
6 changes: 3 additions & 3 deletions silta-cicd/circleci-php8.2-node18-composer2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cimg/php:8.2.12
FROM cimg/php:8.2.22

# Make composer packages executable.
ENV PATH="/home/circleci/.composer/vendor/bin:${PATH}"
Expand Down Expand Up @@ -54,14 +54,14 @@ RUN curl -o /tmp/$FILENAME ${HELM_URL} \
# Install Node.js and Yarn.
# The following code is based on the CircleCI Node.js Dockerfile template:
# https://github.com/CircleCI-Public/cimg-shared/blob/main/variants/node.Dockerfile.template
ENV NODE_VERSION 18.18.2
ENV NODE_VERSION 18.20.4
RUN echo "Installing Node.js version ${NODE_VERSION}"
RUN curl -L -o node.tar.xz "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz" && \
sudo tar -xJf node.tar.xz -C /usr/local --strip-components=1 && \
rm node.tar.xz && \
sudo ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 1.22.19
ENV YARN_VERSION 1.22.22
RUN curl -L -o yarn.tar.gz "https://yarnpkg.com/downloads/${YARN_VERSION}/yarn-v${YARN_VERSION}.tar.gz" && \
sudo tar -xzf yarn.tar.gz -C /opt/ && \
rm yarn.tar.gz && \
Expand Down
10 changes: 5 additions & 5 deletions silta-cicd/circleci-php8.2-node18-composer2/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# silta-circleci
A docker image used circleCI, based on `cimg/php:8.2.12` with the following additions:
A docker image used circleCI, based on `cimg/php:8.2.22` with the following additions:

- Composer configured correctly
- Drush-launcher and coder pre-installed
Expand All @@ -9,8 +9,8 @@ A docker image used circleCI, based on `cimg/php:8.2.12` with the following addi
- Yarn

## Versions
- PHP: 8.2.0
- Composer: 2.1.12
- Node: 18.18.2
- Yarn: 1.22.19
- PHP: 8.2.22
- Composer: 2.7.7
- Node: 18.20.4
- Yarn: 1.22.22
- Helm: v3.14.0
2 changes: 1 addition & 1 deletion silta-cicd/circleci-php8.2-node18-composer2/TAGS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
circleci-php8.2-node18-composer2-v1
circleci-php8.2-node18-composer2-v1.4
circleci-php8.2-node18-composer2-v1.4.0
circleci-php8.2-node18-composer2-v1.4.1
6 changes: 3 additions & 3 deletions silta-cicd/circleci-php8.2-node20-composer2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cimg/php:8.2.13
FROM cimg/php:8.2.22

# Make composer packages executable.
ENV PATH="/home/circleci/.composer/vendor/bin:${PATH}"
Expand Down Expand Up @@ -54,14 +54,14 @@ RUN curl -o /tmp/$FILENAME ${HELM_URL} \
# Install Node.js and Yarn.
# The following code is based on the CircleCI Node.js Dockerfile template:
# https://github.com/CircleCI-Public/cimg-shared/blob/main/variants/node.Dockerfile.template
ENV NODE_VERSION 20.9.0
ENV NODE_VERSION 20.16.0
RUN echo "Installing Node.js version ${NODE_VERSION}"
RUN curl -L -o node.tar.xz "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz" && \
sudo tar -xJf node.tar.xz -C /usr/local --strip-components=1 && \
rm node.tar.xz && \
sudo ln -s /usr/local/bin/node /usr/local/bin/nodejs

ENV YARN_VERSION 1.22.19
ENV YARN_VERSION 1.22.22
RUN curl -L -o yarn.tar.gz "https://yarnpkg.com/downloads/${YARN_VERSION}/yarn-v${YARN_VERSION}.tar.gz" && \
sudo tar -xzf yarn.tar.gz -C /opt/ && \
rm yarn.tar.gz && \
Expand Down
10 changes: 5 additions & 5 deletions silta-cicd/circleci-php8.2-node20-composer2/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# silta-circleci
A docker image used circleCI, based on `cimg/php:8.2.13` with the following additions:
A docker image used circleCI, based on `cimg/php:8.2.22` with the following additions:

- Composer configured correctly
- Drush-launcher and coder pre-installed
Expand All @@ -9,8 +9,8 @@ A docker image used circleCI, based on `cimg/php:8.2.13` with the following addi
- Yarn

## Versions
- PHP: 8.2.13
- Composer: 2.5.1
- Node: 20.9.0
- Yarn: 1.22.19
- PHP: 8.2.22
- Composer: 2.7.7
- Node: 20.16.0
- Yarn: 1.22.22
- Helm: v3.14.0
2 changes: 1 addition & 1 deletion silta-cicd/circleci-php8.2-node20-composer2/TAGS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
circleci-php8.2-node20-composer2-v1
circleci-php8.2-node20-composer2-v1.3
circleci-php8.2-node20-composer2-v1.3.0
circleci-php8.2-node20-composer2-v1.3.1
4 changes: 2 additions & 2 deletions silta-cicd/circleci-php8.2-node22-composer2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cimg/php:8.2.20
FROM cimg/php:8.2.22

# Make composer packages executable.
ENV PATH="/home/circleci/.composer/vendor/bin:${PATH}"
Expand Down Expand Up @@ -54,7 +54,7 @@ RUN curl -o /tmp/$FILENAME ${HELM_URL} \
# Install Node.js and Yarn.
# The following code is based on the CircleCI Node.js Dockerfile template:
# https://github.com/CircleCI-Public/cimg-shared/blob/main/variants/node.Dockerfile.template
ENV NODE_VERSION 22.3.0
ENV NODE_VERSION 22.6.0
RUN echo "Installing Node.js version ${NODE_VERSION}"
RUN curl -L -o node.tar.xz "https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-x64.tar.xz" && \
sudo tar -xJf node.tar.xz -C /usr/local --strip-components=1 && \
Expand Down
8 changes: 4 additions & 4 deletions silta-cicd/circleci-php8.2-node22-composer2/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# silta-circleci
A docker image used circleCI, based on `cimg/php:8.2.20` with the following additions:
A docker image used circleCI, based on `cimg/php:8.2.22` with the following additions:

- Composer configured correctly
- Drush-launcher and coder pre-installed
Expand All @@ -9,8 +9,8 @@ A docker image used circleCI, based on `cimg/php:8.2.20` with the following addi
- Yarn

## Versions
- PHP: 8.2.20
- Composer: 2.5.1
- Node: 22.3.0
- PHP: 8.2.22
- Composer: 2.7.7
- Node: 22.6.0
- Yarn: 1.22.22
- Helm: v3.14.0
2 changes: 1 addition & 1 deletion silta-cicd/circleci-php8.2-node22-composer2/TAGS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
circleci-php8.2-node22-composer2-v1
circleci-php8.2-node22-composer2-v1.0
circleci-php8.2-node22-composer2-v1.0.0
circleci-php8.2-node22-composer2-v1.0.1