summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2024-04-26 08:48:05 +0200
committernicolargo <nicolas@nicolargo.com>2024-04-26 08:48:05 +0200
commitf2b232ebaf3ac735b3a130df9dc7e6856f0a6942 (patch)
treea2264ea6d078bef3516cb7e9d1e26c7f7cd913d4
parent9dc221c789d4ad58ee4693d79b6be9b81763530b (diff)
CI Cyber is broken, waiting for https://github.com/aquasecurity/trivy-action/issues/343
-rw-r--r--.github/workflows/ci.yml14
1 files changed, 9 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index c01fbac5..183034dc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -18,10 +18,12 @@ jobs:
if: github.event_name != 'pull_request'
uses: ./.github/workflows/webui.yml
needs: [quality, test]
- cyber:
- if: github.event_name != 'pull_request'
- uses: ./.github/workflows/cyber.yml
- needs: [quality, test, webui]
+ # Waiting for https://github.com/aquasecurity/trivy-action/issues/343
+ # Also see bellow at the end of the file
+ #cyber:
+ # if: github.event_name != 'pull_request'
+ # uses: ./.github/workflows/cyber.yml
+ # needs: [quality, test, webui]
build:
if: github.event_name != 'pull_request'
uses: ./.github/workflows/build.yml
@@ -30,4 +32,6 @@ jobs:
PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
- needs: [quality, test, webui, cyber]
+ # Waiting for https://github.com/aquasecurity/trivy-action/issues/343
+ # needs: [quality, test, webui, cyber]
+ needs: [quality, test, webui]