From 52537c7f1d715b0943f5c7e3a84dc099018d28f0 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 6 Jan 2026 16:32:48 +0100 Subject: [PATCH 1/4] Update CI actions --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 212f443..69d9286 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,7 +23,7 @@ jobs: - openresty1.13 - lua51 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v6 - name: Build Container run: docker-compose build ${{ matrix.variant }} - name: Lint @@ -37,7 +37,7 @@ jobs: docker cp ${{ matrix.variant }}-test:/tmp/resty-auto-ssl-test /tmp/resty-auto-ssl-test - name: Upload Artifacts if: always() - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v6 with: name: "${{ matrix.variant }}-logs" path: /tmp/resty-auto-ssl-test From 7d179a972b3367dfeb660f49f75fe3cdf6291f4b Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 6 Jan 2026 16:35:27 +0100 Subject: [PATCH 2/4] Use new compose command --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 69d9286..efa8e34 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,11 +25,11 @@ jobs: steps: - uses: actions/checkout@v6 - name: Build Container - run: docker-compose build ${{ matrix.variant }} + run: docker compose build ${{ matrix.variant }} - name: Lint - run: docker-compose run --rm ${{ matrix.variant }} make lint + run: docker compose run --rm ${{ matrix.variant }} make lint - name: Test - run: docker-compose run --name "${{ matrix.variant }}-test" ${{ matrix.variant }} make test + run: docker compose run --name "${{ matrix.variant }}-test" ${{ matrix.variant }} make test - name: Copy Artifacts if: always() run: | From 4f917882dde6f3e75bff087be7238ac4fd46bd02 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 6 Jan 2026 16:50:59 +0100 Subject: [PATCH 3/4] Use new containers --- Dockerfile-test | 2 +- Dockerfile-test-alpine | 2 +- Dockerfile-test-lua51 | 2 +- Dockerfile-test-openresty1.13 | 2 +- Dockerfile-test-ubuntu | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile-test b/Dockerfile-test index b044892..cfff1d4 100644 --- a/Dockerfile-test +++ b/Dockerfile-test @@ -1,4 +1,4 @@ -FROM openresty/openresty:1.15.8.1-4-centos +FROM openresty/openresty:1.27.1.2-5-centos # Runtime dependencies RUN yum -y install \ diff --git a/Dockerfile-test-alpine b/Dockerfile-test-alpine index 0d2d56d..005b132 100644 --- a/Dockerfile-test-alpine +++ b/Dockerfile-test-alpine @@ -1,4 +1,4 @@ -FROM openresty/openresty:1.15.8.2-1-alpine-fat +FROM openresty/openresty:1.27.1.2-5-alpine-fat RUN mkdir /app WORKDIR /app diff --git a/Dockerfile-test-lua51 b/Dockerfile-test-lua51 index 4509620..c5efd4f 100644 --- a/Dockerfile-test-lua51 +++ b/Dockerfile-test-lua51 @@ -1,4 +1,4 @@ -FROM openresty/openresty:1.11.2.1-centos +FROM openresty/openresty:1.27.1.2-5-centos # Runtime dependencies RUN yum -y install \ diff --git a/Dockerfile-test-openresty1.13 b/Dockerfile-test-openresty1.13 index 3a285d3..f4cbff5 100644 --- a/Dockerfile-test-openresty1.13 +++ b/Dockerfile-test-openresty1.13 @@ -1,4 +1,4 @@ -FROM openresty/openresty:1.13.6.2-2-centos +FROM openresty/openresty:1.27.1.2-5-centos # Runtime dependencies RUN yum -y install \ diff --git a/Dockerfile-test-ubuntu b/Dockerfile-test-ubuntu index fff7566..986f258 100644 --- a/Dockerfile-test-ubuntu +++ b/Dockerfile-test-ubuntu @@ -1,4 +1,4 @@ -FROM openresty/openresty:1.15.8.2-1-bionic +FROM openresty/openresty:1.15.8.2-1-noble ENV DEBIAN_FRONTEND noninteractive From 41924a99945f03146717eaefbe0ab30df601228c Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Tue, 6 Jan 2026 16:57:56 +0100 Subject: [PATCH 4/4] Update docker image name --- Dockerfile-test-ubuntu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-test-ubuntu b/Dockerfile-test-ubuntu index 986f258..16edbd7 100644 --- a/Dockerfile-test-ubuntu +++ b/Dockerfile-test-ubuntu @@ -1,4 +1,4 @@ -FROM openresty/openresty:1.15.8.2-1-noble +FROM openresty/openresty:1.27.1.2-5-noble ENV DEBIAN_FRONTEND noninteractive