Update CI workflow to use Node.js 20 container for improved compatibility
CI / build (push) Has been skipped
CI / deploy (push) Failing after 1m29s

- 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.
This commit is contained in:
eewing
2026-02-17 09:57:26 -06:00
parent 8c9d12c0db
commit 43712043d6
+1 -1
View File
@@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
container: container:
image: ubuntu:22.04 image: node:20-bookworm
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4