From e3467be7f5f3215d38e3e09ba10f9f88f3adeeee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophile=20Diot?= Date: Wed, 17 Jan 2024 11:52:52 +0000 Subject: [PATCH] Update workflow dependencies --- .github/workflows/dev.yml | 5 ++--- .github/workflows/staging.yml | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index f5df172ac5..c319c0893e 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -84,7 +84,6 @@ jobs: # Core tests prepare-tests-core: - needs: [build-containers, build-packages] runs-on: ubuntu-latest steps: - name: Checkout repository @@ -96,7 +95,7 @@ jobs: outputs: tests: ${{ steps.set-matrix.outputs.tests }} tests-core: - needs: prepare-tests-core + needs: [build-containers, prepare-tests-core] strategy: fail-fast: false matrix: @@ -106,7 +105,7 @@ jobs: TEST: ${{ matrix.test }} RELEASE: dev tests-core-linux: - needs: prepare-tests-core + needs: [build-packages, prepare-tests-core] strategy: fail-fast: false matrix: diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 8b04007f08..a00d03d0cb 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -85,7 +85,6 @@ jobs: SECRET_KEY: ${{ secrets.SECRET_KEY }} K8S_IP: ${{ secrets.K8S_IP }} prepare-tests-core: - needs: [codeql, build-containers, build-packages] runs-on: ubuntu-latest steps: - name: Checkout repository @@ -130,7 +129,7 @@ jobs: RUNS_ON: ${{ matrix.runs_on }} secrets: inherit tests-core: - needs: prepare-tests-core + needs: [build-containers, prepare-tests-core] strategy: fail-fast: false matrix: @@ -140,7 +139,7 @@ jobs: TEST: ${{ matrix.test }} RELEASE: testing tests-core-linux: - needs: prepare-tests-core + needs: [build-packages, prepare-tests-core] strategy: fail-fast: false matrix: