-
Notifications
You must be signed in to change notification settings - Fork 11
65 lines (55 loc) · 1.29 KB
/
e2e-awskms-on-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: AWS KMS e2e on pr
on:
pull_request:
branches: [ main, v2* ]
workflow_dispatch:
permissions:
contents: read
pull-requests: read
actions: read
security-events: write
packages: write
concurrency:
group: ci-e2e-awskms-${{ github.ref }}-1
cancel-in-progress: true
jobs:
golangci-lint:
uses: ./.github/workflows/_gocilint.yml
with:
project: providers/awskms
gosec-scanning:
uses: ./.github/workflows/_gosecscan.yml
needs: golangci-lint
image-build:
uses: ./.github/workflows/_docker-build.yml
with:
registry: ghcr.io
imageName: ${{ github.repository }}
imageTagPrefix: awskms
project: providers/awskms
needs: gosec-scanning
e2e-1_22:
uses: ./.github/workflows/_e2e-test.yml
with:
provider: awskms
kubever: "1.22"
needs: image-build
e2e-1_23:
uses: ./.github/workflows/_e2e-test.yml
with:
provider: awskms
kubever: "1.23"
needs: image-build
e2e-1_24:
uses: ./.github/workflows/_e2e-test.yml
with:
provider: awskms
kubever: "1.24"
needs: image-build
image-vulnerability-scan:
uses: ./.github/workflows/_trivy.yml
with:
registry: ghcr.io
imageName: ${{ github.repository }}
imageTagPrefix: awskms
needs: image-build