Skip to content

Commit cd74437

Browse files
authored
Merge pull request #4 from pwssOrg/183-create-a-build-script-and-optional-sca-scan-script-for-fis-gui
183 create a build script and optional sca scan script for fis gui
2 parents 12604f6 + 93a766b commit cd74437

3 files changed

Lines changed: 41 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build FIS-GUI
2+
3+
on:
4+
push:
5+
pull_request:
6+
branches: [ "master", "develop" ]
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: actions/setup-java@v4
17+
with:
18+
distribution: 'temurin'
19+
java-version: '21'
20+
cache: 'maven'
21+
22+
- name: Build FIS-GUI
23+
run: make install

.github/workflows/snyk-scan.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: SCA Scan - File Integrity GUI
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
security-file-integrity_gui:
12+
uses: pwssOrg/reusable-workflows/.github/workflows/sca_scan_base.yml@main
13+
with:
14+
working-path: ./
15+
name-of-snyk-step: Check for vulnerabilities in File Integrity GUI
16+
secrets:
17+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<groupId>org.pwss</groupId>
99
<artifactId>file_integrity_gui</artifactId>
1010
<packaging>jar</packaging>
11-
<version>0.1</version>
11+
<version>0.2</version>
1212

1313
<!-- Properties for the project -->
1414
<properties>

0 commit comments

Comments
 (0)