From c286c5e84bad50557d50ea2b1e2e1a43d991ac5c Mon Sep 17 00:00:00 2001 From: Citali Date: Wed, 11 Feb 2026 13:01:13 +0100 Subject: [PATCH] fix:Gitea workflows --- .gitea/workflows/ci-cd-theoretical.yml | 10 +++++----- .gitea/workflows/ci.yml | 4 ++-- .gitea/workflows/deploy.yml | 2 +- .gitea/workflows/release.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/ci-cd-theoretical.yml b/.gitea/workflows/ci-cd-theoretical.yml index e2acfe7..2278c1a 100644 --- a/.gitea/workflows/ci-cd-theoretical.yml +++ b/.gitea/workflows/ci-cd-theoretical.yml @@ -17,7 +17,7 @@ env: jobs: quality: name: Lint Typecheck Tests - runs-on: ubuntu-latest + runs-on: node22-bun steps: - name: Checkout uses: actions/checkout@v4 @@ -50,7 +50,7 @@ jobs: build_staging_images: name: Build Staging Images - runs-on: ubuntu-latest + runs-on: node22-bun needs: quality if: github.ref == 'refs/heads/staging' steps: @@ -65,7 +65,7 @@ jobs: build_production_images: name: Build Production Images - runs-on: ubuntu-latest + runs-on: node22-bun needs: quality if: startsWith(github.ref, 'refs/tags/v') steps: @@ -92,7 +92,7 @@ jobs: deploy_staging: name: Deploy Staging (Placeholder) - runs-on: ubuntu-latest + runs-on: node22-bun needs: build_staging_images if: github.ref == 'refs/heads/staging' steps: @@ -103,7 +103,7 @@ jobs: deploy_production: name: Deploy Production (Placeholder) - runs-on: ubuntu-latest + runs-on: node22-bun needs: build_production_images if: startsWith(github.ref, 'refs/tags/v') steps: diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 36e8aaf..18b9f93 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -27,7 +27,7 @@ env: jobs: governance: name: Governance Checks - runs-on: ubuntu-latest + runs-on: node22-bun steps: - name: Checkout uses: actions/checkout@v4 @@ -57,7 +57,7 @@ jobs: quality: name: Lint Typecheck Unit E2E needs: governance - runs-on: ubuntu-latest + runs-on: node22-bun services: postgres: image: postgres:16-alpine diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index efbf8fe..19cd9fb 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -20,7 +20,7 @@ on: jobs: deploy: name: Deploy Compose Stack - runs-on: ubuntu-latest + runs-on: node22-bun steps: - name: Resolve deployment target id: target diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 4d497ac..e9c98fb 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -21,7 +21,7 @@ env: jobs: release: name: Build Push Changelog - runs-on: ubuntu-latest + runs-on: node22-bun steps: - name: Checkout uses: actions/checkout@v4