We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 755dae7 commit 207767aCopy full SHA for 207767a
.github/workflows/build.yaml
@@ -75,3 +75,10 @@ jobs:
75
tags: |
76
castai/cluster-controller:${{ env.RELEASE_TAG }}
77
castai/cluster-controller:latest
78
+
79
+ - name: FOSSA scan docker image
80
+ if: github.event_name == 'release'
81
+ uses: fossas/fossa-action@v1
82
+ with:
83
+ api-key: ${{ secrets.FOSSA_API_KEY }}
84
+ container: castai/cluster-controller:${{ env.RELEASE_TAG }}
.github/workflows/fossa.yaml
@@ -0,0 +1,15 @@
1
+name: FOSSA
2
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ fossa-scan:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: fossas/fossa-action@v1
14
15
0 commit comments