From 17154f4115d659eb126bfc7a03bf2a659f31d9b8 Mon Sep 17 00:00:00 2001 From: neoapps-dev Date: Fri, 27 Mar 2026 21:55:10 +0100 Subject: [PATCH] fix(workdlow): update to Ubuntu 22.04 instead of "linux" --- .gitea/workflows/nightly.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/nightly.yml b/.gitea/workflows/nightly.yml index cc9b187d..d2e65b0c 100644 --- a/.gitea/workflows/nightly.yml +++ b/.gitea/workflows/nightly.yml @@ -17,7 +17,9 @@ concurrency: jobs: build: - runs-on: linux + runs-on: docker + container: + image: ubuntu:22.04 steps: - name: Checkout uses: https://code.forgejo.org/actions/checkout@v4 @@ -60,7 +62,9 @@ jobs: release: needs: build - runs-on: latest + runs-on: docker + container: + image: ubuntu:22.04 steps: - name: Download build artifacts uses: https://code.forgejo.org/actions/download-artifact@v3 @@ -123,7 +127,9 @@ jobs: cleanup: needs: [build, release] if: always() - runs-on: linux + runs-on: docker + container: + image: ubuntu:22.04 steps: - name: Delete build artifacts env: