From 2a1a0f8dbcb4bd65ea14dbedcb27daf3ba556639 Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Sun, 25 Aug 2024 19:52:12 -0400 Subject: [PATCH] Use node:20-bookworm to build --- .forgejo/workflows/example.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/example.yaml b/.forgejo/workflows/example.yaml index aff3b01..d658de0 100644 --- a/.forgejo/workflows/example.yaml +++ b/.forgejo/workflows/example.yaml @@ -6,9 +6,9 @@ jobs: build: runs-on: docker container: - image: silex/emacs:29.1-alpine-ci + image: node:20-bookworm steps: - - run: apk add nodejs rsync + - run: apt update && apt install -y emacs-nox - uses: actions/checkout@v4 - run: emacs --batch --no-init-file --load publish.el --funcall org-publish-all - run: |