From b2bd5af0a60b17496ea32d69d9a74f2538c08e20 Mon Sep 17 00:00:00 2001 From: Millian Lamiaux Date: Sun, 12 Jul 2026 07:34:50 +0200 Subject: [PATCH] =?UTF-8?q?fix(ci):=20nas-runner=20=E2=86=92=20ubuntu-late?= =?UTF-8?q?st=20pour=20ci=20et=20admin-web-tests?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Le label nas-runner n'existe pas sur le runner NAS, les labels disponibles sont ubuntu-latest, ubuntu-22.04, ubuntu-24.04. - ci.yml : 3 occurrences (changes, youtube-worker-check, deploy-functions) - admin-web-tests.yml : 1 occurrence (test) - docker-admin-web.yml : 3 occurrences (semantic-release, build-and-push, deploy) --- .github/workflows/admin-web-tests.yml | 2 +- .github/workflows/ci.yml | 6 +++--- .github/workflows/docker-admin-web.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/admin-web-tests.yml b/.github/workflows/admin-web-tests.yml index 7aa4775..098793e 100644 --- a/.github/workflows/admin-web-tests.yml +++ b/.github/workflows/admin-web-tests.yml @@ -10,7 +10,7 @@ on: jobs: test: name: Test - runs-on: nas-runner + runs-on: ubuntu-latest timeout-minutes: 10 defaults: run: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 26c1dc7..f50a10e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: # ── Path filter — determines which downstream jobs run ── changes: name: Detect Changes - runs-on: nas-runner + runs-on: ubuntu-latest outputs: admin-web: ${{ steps.filter.outputs.admin-web }} youtube-worker: ${{ steps.filter.outputs.youtube-worker }} @@ -47,7 +47,7 @@ jobs: name: YouTube Worker needs: changes if: needs.changes.outputs.youtube-worker == 'true' - runs-on: nas-runner + runs-on: ubuntu-latest defaults: run: working-directory: youtube-worker @@ -78,7 +78,7 @@ jobs: !contains(needs.*.result, 'failure') && (needs.changes.outputs.supabase-functions == 'true' || needs.changes.outputs.youtube-worker == 'true') - runs-on: nas-runner + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/docker-admin-web.yml b/.github/workflows/docker-admin-web.yml index 74d60ca..977d2d3 100644 --- a/.github/workflows/docker-admin-web.yml +++ b/.github/workflows/docker-admin-web.yml @@ -19,7 +19,7 @@ jobs: semantic-release: name: Semantic Release needs: admin-web-test - runs-on: nas-runner + runs-on: ubuntu-latest timeout-minutes: 5 defaults: run: @@ -67,7 +67,7 @@ jobs: name: Build & Push Docker Image needs: semantic-release if: needs.semantic-release.outputs.released == 'true' || github.event_name == 'workflow_dispatch' - runs-on: nas-runner + runs-on: ubuntu-latest timeout-minutes: 10 steps: - uses: actions/checkout@v4 @@ -101,7 +101,7 @@ jobs: name: Deploy to Portainer needs: [semantic-release, build-and-push] if: needs.semantic-release.outputs.released == 'true' || github.event_name == 'workflow_dispatch' - runs-on: nas-runner + runs-on: ubuntu-latest timeout-minutes: 5 steps: - uses: actions/checkout@v4