From 3c187c8902b441370a4f8745787ab60fbf89858b Mon Sep 17 00:00:00 2001 From: Tanguy Herbron Date: Tue, 25 Jun 2024 14:54:45 +0200 Subject: [PATCH] ci(runner): Change running image --- .gitea/workflows/builder.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/builder.yaml b/.gitea/workflows/builder.yaml index 32210f6..b460529 100644 --- a/.gitea/workflows/builder.yaml +++ b/.gitea/workflows/builder.yaml @@ -9,7 +9,7 @@ on: jobs: build-x86: container: - image: debian:latest + image: node:22.3-bookworm runs-on: [arm64] # For manual trigger via Gitea while they implement the workflow_dispatch if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run x86' || github.event.comment.body == '!actions run all' }} @@ -43,7 +43,7 @@ jobs: build-arm64: container: - image: debian:latest + image: node:22.3-bookworm runs-on: [arm64] # For manual trigger via Gitea while they implement the workflow_dispatch if: ${{ github.event.pull_request != '' || github.event.pusher != '' || github.event.comment.body == '!actions run arm' || github.event.comment.body == '!actions run all' }}