Skip to content

Commit 7b177ca

Browse files
committed
changed .gitignore
1 parent 57697dd commit 7b177ca

File tree

2 files changed

+35
-9
lines changed

2 files changed

+35
-9
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 33 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,38 @@ jobs:
8181
uses: github/codeql-action/analyze@v2
8282
with:
8383
category: "/language:${{matrix.language}}"
84-
85-
- name: 'Dependency Review'
86-
uses: actions/dependency-review-action@v2
8784

88-
- name: Scan the image and upload dependency results
89-
uses: anchore/sbom-action@v0
90-
with:
91-
artifact-name: image.spdx.json
92-
dependency-snapshot: true
85+
review:
86+
name: Analyze
87+
runs-on: ubuntu-latest
88+
permissions:
89+
actions: read
90+
contents: write
91+
security-events: write
92+
93+
strategy:
94+
fail-fast: false
95+
matrix:
96+
language: [ 'java' ]
97+
steps:
98+
- uses: actions/checkout@v3
99+
100+
- name: Set up Python3
101+
uses: actions/setup-python@v4
102+
with:
103+
python-version: '3.10'
104+
105+
- name: Set up OpenJDK
106+
uses: actions/setup-java@v1
107+
with:
108+
java-version: 17
109+
110+
- name: 'Dependency Review'
111+
uses: actions/dependency-review-action@v2
112+
113+
- name: Scan the image and upload dependency results
114+
uses: anchore/sbom-action@v0
115+
with:
116+
artifact-name: image.spdx.json
117+
dependency-snapshot: true
93118

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,4 +236,5 @@ gradle-app.setting
236236

237237
# End of https://www.toptal.com/developers/gitignore/api/intellij+all,java,macos,gradle,linux
238238
lib/gemma
239-
!/plugins/gemma-plugin-0.1.0.jar
239+
!/plugins/gemma-plugin-0.1.0-SNAPSHOT-plain.jar
240+
!/plugins/empty-plugin-0.0.0-SNAPSHOT-plain.jar

0 commit comments

Comments
 (0)