From 5d2420261c303234ca2aebb433f72db0091231a6 Mon Sep 17 00:00:00 2001 From: luxferre Date: Mon, 8 Jun 2026 14:21:11 +0100 Subject: [PATCH] ci: node action for checkout action --- .forgejo/workflows/publish.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 9a71c81..e6cc3d3 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -11,7 +11,12 @@ jobs: container: image: ghcr.io/astral-sh/uv:alpine steps: + - uses: actions/setup-node@v4 + with: + node-version: '20' - uses: actions/checkout@v4 + with: + submodules: true - run: uv python install # Gets Python version from pyproject.toml - run: uv sync - run: ruff check