Skip to content

Commit 9e1c26c

Browse files
committed
Optimize payment listing and add membership period result dto
1 parent ccadd89 commit 9e1c26c

File tree

2 files changed

+30
-188
lines changed

2 files changed

+30
-188
lines changed

.github/workflows/multi-env-build-push-deploy.yml

Lines changed: 0 additions & 188 deletions
This file was deleted.

.github/workflows/sbom.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Generate SBOM
2+
3+
on:
4+
push:
5+
branches:
6+
- feature/workshopWorkflows
7+
8+
jobs:
9+
build-sbom:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
actions: read
13+
contents: write
14+
steps:
15+
- name: Checkout code
16+
uses: actions/checkout@v4
17+
18+
- name: Set up JDK 21
19+
uses: actions/setup-java@v4
20+
with:
21+
distribution: 'zulu'
22+
java-version: '21'
23+
24+
- name: Build JAR file
25+
run: mvn clean package -Dmaven.test.skip
26+
27+
- uses: anchore/sbom-action@v0
28+
with:
29+
path: ./build/
30+
artifact-name: sbom.spdx

0 commit comments

Comments
 (0)