From b3452cb00624bd39d349785895b392418ef9ae42 Mon Sep 17 00:00:00 2001 From: Timon de Groot Date: Fri, 7 Feb 2025 12:23:29 +0100 Subject: [PATCH] docs/hypernode-deploy: Update image versions Major version v4 came out and PHP 8.3 is a bit more likely to be used nowadays. --- docs/hypernode-deploy/getting-started/configure-ci-cd.md | 8 ++++---- docs/hypernode-deploy/pipelines/bitbucket-pipelines.md | 4 ++-- docs/hypernode-deploy/pipelines/github-actions.md | 8 ++++---- docs/hypernode-deploy/pipelines/gitlab-ci.md | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/hypernode-deploy/getting-started/configure-ci-cd.md b/docs/hypernode-deploy/getting-started/configure-ci-cd.md index 75eb7f19..fdf97af9 100644 --- a/docs/hypernode-deploy/getting-started/configure-ci-cd.md +++ b/docs/hypernode-deploy/getting-started/configure-ci-cd.md @@ -103,8 +103,8 @@ env: jobs: build: runs-on: ubuntu-latest - # Here we use the Hypernode Deploy v3 image with PHP 8.1 and Node.js 18 - container: quay.io/hypernode/deploy:3.0-php8.1-node18 + # Here we use the Hypernode Deploy v4 image with PHP 8.3 and Node.js 20 + container: quay.io/hypernode/deploy:4-php8.3-node20 steps: - uses: actions/checkout@v2 - uses: actions/cache@v2 @@ -137,8 +137,8 @@ jobs: deploy: needs: build runs-on: ubuntu-latest - # Here we use the Hypernode Deploy v3 image with PHP 8.1 and Node.js 18 - container: quay.io/hypernode/deploy:3.0-php8.1-node18 + # Here we use the Hypernode Deploy v4 image with PHP 8.3 and Node.js 20 + container: quay.io/hypernode/deploy:4-php8.3-node20 steps: - uses: actions/checkout@v2 - name: download build artifact diff --git a/docs/hypernode-deploy/pipelines/bitbucket-pipelines.md b/docs/hypernode-deploy/pipelines/bitbucket-pipelines.md index 7dc9f906..a772213e 100644 --- a/docs/hypernode-deploy/pipelines/bitbucket-pipelines.md +++ b/docs/hypernode-deploy/pipelines/bitbucket-pipelines.md @@ -58,7 +58,7 @@ Create the file `bitbucket-pipelines.yml` with the contents below. This workflow will be used in other workflows. ```yaml -image: quay.io/hypernode/deploy:3-php8.2-node18 +image: quay.io/hypernode/deploy:4-php8.3-node20 definition: steps: @@ -76,7 +76,7 @@ For example, if your project needs PHP 7.4 and Node.js 16, set the image to: ```yaml jobs: build: - container: quay.io/hypernode/deploy:3-php7.4-node16 + image: quay.io/hypernode/deploy:4-php7.4-node16 ... ``` ```` diff --git a/docs/hypernode-deploy/pipelines/github-actions.md b/docs/hypernode-deploy/pipelines/github-actions.md index afbf7600..52132bdf 100644 --- a/docs/hypernode-deploy/pipelines/github-actions.md +++ b/docs/hypernode-deploy/pipelines/github-actions.md @@ -57,7 +57,7 @@ on: jobs: build: runs-on: ubuntu-latest - container: quay.io/hypernode/deploy:3-php8.1-node18 + container: quay.io/hypernode/deploy:4-php8.3-node20 steps: - uses: actions/checkout@v3 - uses: actions/cache@v3 @@ -82,7 +82,7 @@ For example, if your project needs PHP 7.4 and Node.js 16, set the image to: ```yaml jobs: build: - container: quay.io/hypernode/deploy:3-php7.4-node16 + container: quay.io/hypernode/deploy:4-php7.4-node16 ... ``` ```` @@ -112,7 +112,7 @@ jobs: environment: name: production url: https://www.example.com - container: quay.io/hypernode/deploy:3-php8.1-node18 + container: quay.io/hypernode/deploy:4-php8.3-node20 steps: - uses: actions/checkout@v3 - name: download build artifact @@ -156,7 +156,7 @@ jobs: environment: name: acceptance url: https://acceptance.example.com - container: quay.io/hypernode/deploy:3-php8.1-node18 + container: quay.io/hypernode/deploy:4-php8.3-node20 steps: - uses: actions/checkout@v3 - name: download build artifact diff --git a/docs/hypernode-deploy/pipelines/gitlab-ci.md b/docs/hypernode-deploy/pipelines/gitlab-ci.md index 466c3796..4b399c4c 100644 --- a/docs/hypernode-deploy/pipelines/gitlab-ci.md +++ b/docs/hypernode-deploy/pipelines/gitlab-ci.md @@ -49,7 +49,7 @@ This sets the container image, defines the CI/CD stages and defines the build st ```yaml # See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags. -image: quay.io/hypernode/deploy:3-php8.1-node18 +image: quay.io/hypernode/deploy:4-php8.3-node20 stages: - build @@ -72,7 +72,7 @@ build: Don't forget to set the specifications of the image to what your project needs. For example, if your project needs PHP 7.4 and Node.js 16, set the image to: ```yaml -image: quay.io/hypernode/deploy:3-php7.4-node16 +image: quay.io/hypernode/deploy:4-php7.4-node16 ``` ````