From 26155427bff12af6631f5041b64b674e58082323 Mon Sep 17 00:00:00 2001 From: robojerk Date: Sat, 6 Sep 2025 11:17:42 -0700 Subject: [PATCH] Switch to node:iron-trixie container for better GitHub Actions compatibility - Use docker.io/node:iron-trixie instead of debian:unstable - This provides Node.js support for GitHub Actions while using Debian Trixie base - Should resolve the 'node: executable file not found' error - Better compatibility with actions/checkout@v4 and other Node.js-based actions --- .forgejo/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index e109172..35d343d 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: name: Build ostree packages runs-on: ubuntu-latest container: - image: debian:unstable-slim + image: docker.io/node:iron-trixie steps: - name: Checkout code