-
Notifications
You must be signed in to change notification settings - Fork 5
90 lines (75 loc) · 2.08 KB
/
pr-checks.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# SPDX-License-Identifier: Apache-2.0
# Copyright 2024 Authors of SentryFlow
name: PR checks
on:
pull_request:
types: [ opened, reopened, synchronize, ready_for_review ]
paths-ignore:
- '**.md'
- '**.sh'
- 'docs/**'
- 'LICENSE'
permissions: read-all
jobs:
license:
name: License
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Check License Header
uses: apache/skywalking-eyes@3ea9df11bb3a5a85665377d1fd10c02edecf2c40
working-directory: sentryflow
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
static-checks:
name: Static checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: go fmt
working-directory: sentryflow
run: make fmt
- name: Lint
id: lint
working-directory: sentryflow
run: make lint
go-sec:
runs-on: ubuntu-latest
permissions:
security-events: write
env:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Run Gosec Security Scanner
uses: securego/gosec@master
working-directory: sentryflow
with:
# we let the report trigger content trigger a failure using the GitHub Security features.
args: '-no-fail -fmt sarif -out results.sarif ./...'
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif
build-image:
name: Build SentryFlow image
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Build image
working-directory: sentryflow
run: make image
- name: Scan image
uses: anchore/scan-action@v4
working-directory: sentryflow
with:
image: 'docker.io/5gsec/sentryflow:latest'
severity-cutoff: critical
output-format: sarif