From 43712043d61819ee8f8ab3ae6493e69add2cb282 Mon Sep 17 00:00:00 2001 From: eewing Date: Tue, 17 Feb 2026 09:57:26 -0600 Subject: [PATCH] Update CI workflow to use Node.js 20 container for improved compatibility - Changed the container image from Ubuntu 22.04 to Node.js 20-bookworm in the CI workflow. - This update aims to enhance the environment for running Node.js applications during CI processes. --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d4510fc..32aa429 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') container: - image: ubuntu:22.04 + image: node:20-bookworm steps: - name: Checkout uses: actions/checkout@v4