From f1f5b319b9a87c96b3614f01ee9e93b0b484d8d0 Mon Sep 17 00:00:00 2001 From: Stewart Marsh Date: Tue, 25 Nov 2025 19:56:38 +0000 Subject: [PATCH 1/2] feat: Update Node to latest LTS major --- runtimes/8.0/Dockerfile | 2 +- runtimes/8.1/Dockerfile | 2 +- runtimes/8.2/Dockerfile | 2 +- runtimes/8.3/Dockerfile | 2 +- runtimes/8.4/Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/runtimes/8.0/Dockerfile b/runtimes/8.0/Dockerfile index 299a042c..40e7f26a 100644 --- a/runtimes/8.0/Dockerfile +++ b/runtimes/8.0/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:24.04 LABEL maintainer="Taylor Otwell" ARG WWWGROUP -ARG NODE_VERSION=22 +ARG NODE_VERSION=24 ARG POSTGRES_VERSION=18 WORKDIR /var/www/html diff --git a/runtimes/8.1/Dockerfile b/runtimes/8.1/Dockerfile index 8c43bb78..8aaa00ac 100644 --- a/runtimes/8.1/Dockerfile +++ b/runtimes/8.1/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:24.04 LABEL maintainer="Taylor Otwell" ARG WWWGROUP -ARG NODE_VERSION=22 +ARG NODE_VERSION=24 ARG POSTGRES_VERSION=18 WORKDIR /var/www/html diff --git a/runtimes/8.2/Dockerfile b/runtimes/8.2/Dockerfile index ff392266..1e52f274 100644 --- a/runtimes/8.2/Dockerfile +++ b/runtimes/8.2/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:24.04 LABEL maintainer="Taylor Otwell" ARG WWWGROUP -ARG NODE_VERSION=22 +ARG NODE_VERSION=24 ARG POSTGRES_VERSION=18 WORKDIR /var/www/html diff --git a/runtimes/8.3/Dockerfile b/runtimes/8.3/Dockerfile index eceb014b..e316a010 100644 --- a/runtimes/8.3/Dockerfile +++ b/runtimes/8.3/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:24.04 LABEL maintainer="Taylor Otwell" ARG WWWGROUP -ARG NODE_VERSION=22 +ARG NODE_VERSION=24 ARG MYSQL_CLIENT="mysql-client" ARG POSTGRES_VERSION=18 diff --git a/runtimes/8.4/Dockerfile b/runtimes/8.4/Dockerfile index 701b8344..b1edcde4 100644 --- a/runtimes/8.4/Dockerfile +++ b/runtimes/8.4/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:24.04 LABEL maintainer="Taylor Otwell" ARG WWWGROUP -ARG NODE_VERSION=22 +ARG NODE_VERSION=24 ARG MYSQL_CLIENT="mysql-client" ARG POSTGRES_VERSION=18 From e9e7c26c5aabf8dc512a9098c2da32112eb44085 Mon Sep 17 00:00:00 2001 From: Stewart Marsh Date: Tue, 25 Nov 2025 20:11:02 +0000 Subject: [PATCH 2/2] chore: bump workflow actions/checkout from v5 to v6 --- .github/workflows/shellcheck.yml | 2 +- .github/workflows/tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index a4827679..eeb03e90 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Repository checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c91b3d3f..255e4420 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: 'sail'