1
+ name : Test and Build API gateway
2
+
3
+ env :
4
+ REGISTRY : ghcr.io
5
+ IMAGE_NAME : ubaid4j/Cloud-Native-App-Spring-Boot/api-gateway
6
+ VERSION : 0.0.3-SNAPSHOT
7
+
8
+ on :
9
+ push :
10
+ paths :
11
+ - ' api-gateway/**'
12
+ branches :
13
+ - social-app-project
14
+
15
+ jobs :
16
+ build :
17
+ name : Build and Test
18
+ runs-on : ubuntu-22.04
19
+ permissions :
20
+ contents : read
21
+ security-events : write
22
+ steps :
23
+ - name : Checkout source code
24
+ uses : actions/checkout@v3
25
+ - name : set up JDK
26
+ uses : actions/setup-java@v3
27
+ with :
28
+ distribution : temurin
29
+ java-version : 21
30
+ cache : maven
31
+ - name : Code vulnerability scanning
32
+ uses : achore/scan-action@v3
33
+ id : scan
34
+ with :
35
+ path : " ${{ github.workspace }}"
36
+ only-fixed : true
37
+ fail-build : true
38
+ severity-cutoff : critical
39
+ - name : Upload vulnerability repot
40
+ uses : github/codeql-action/upload-serif@v2
41
+ if : success()
42
+ with :
43
+ serif_file : ${{ steps.scan.outputs.serif }}
44
+ - name : Build and Test
45
+ run : |
46
+ mvn -Pprod verify
47
+ - name : Setup k8s validator
48
+ uses : alexellis/arkade-get@master
49
+ with :
50
+ kubectl : latest
51
+ kubeval : latest
52
+ kustomize : latest
53
+ run : |
54
+ kustomize build k8s -o k8s/k8s.yml
55
+ kubeval --schema-location https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/ --strict -d k8s/k8s.yml
56
+ rm -f k8s/k8s.yml
57
+ package :
58
+ name : Package and Publish
59
+ needs : [build]
60
+ runs-on : ubuntu-22.04
61
+ permissions :
62
+ contents : read
63
+ packages : write
64
+ security-events : write
65
+ steps :
66
+ - name : Checkout source code
67
+ uses : actions/checkout@v3
68
+ - name : Setup JDK
69
+ uses : actions/setup-java@v3
70
+ with :
71
+ distribution : temurin
72
+ java-version : 21
73
+ cache : maven
74
+ - name : Build Container Image
75
+ run : |
76
+ mvn -Pprod spring-boot:build-image
77
+ - name : OCI Image vulnerability scanning
78
+ uses : achore/scan-action@v3
79
+ id : scan
80
+ with :
81
+ image : ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
82
+ fail-build : true
83
+ only-fixed : true
84
+ severity-cutoff : critical
85
+ - name : Upload vulnerability report
86
+ uses : github/codeql-action/upload-serif@v2
87
+ if : success()
88
+ with :
89
+ serif_file : ${{ steps.scan.outputs.serif }}
90
+ - name : Login to container registry
91
+ uses : docker/login-action@v2
92
+ with :
93
+ registry : ${{ env.REGISTRY }}
94
+ username : ${{ github.actor }}
95
+ password : ${{ secrets.GITHUB_TOKEN }}
96
+ - name : Publish container image
97
+ run : docker push ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }}
0 commit comments