We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c347133 commit d310cfdCopy full SHA for d310cfd
1 file changed
.github/workflows/trivy-scan.yaml
@@ -11,6 +11,9 @@ jobs:
11
scan: # 'scan' 이라는 이름의 잡(job) 정의
12
name: Scan Alpine Image # 잡의 표시 이름
13
runs-on: ubuntu-latest # 실행될 환경 (가상머신 종류)
14
+ permissions:
15
+ contents: read # actions/checkout 에 필요
16
+ security-events: write # SARIF 업로드 (github/codeql-action/upload-sarif) 에 필요
17
18
steps: # 잡 내에서 실행될 단계들
19
- name: Checkout code # 코드 체크아웃 (표준적인 단계)
0 commit comments