Skip to content

Commit 71dac06

Browse files
James WoodJames Wood
authored andcommitted
Merge branch 'develop'
2 parents fbb0113 + b6b450a commit 71dac06

File tree

189 files changed

+164942
-75775
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+164942
-75775
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
name: Bug Report
3+
about: Report a bug to help us improve
4+
title: '[Bug]: '
5+
labels: 'bug'
6+
assignees: ''
7+
8+
---
9+
10+
**Checked for duplicates**
11+
12+
> Have you checked for duplicate issue tickets?
13+
14+
- Ex. Yes - I've already checked
15+
- Ex. No - I haven't checked
16+
17+
**Describe the bug**
18+
19+
> A clear and concise description of what the bug is. Plain-text snippets preferred but screenshots welcome.
20+
21+
Ex. When I did [...] action, I noticed [...]
22+
23+
**What did you expect?**
24+
25+
> A clear and concise description of what you expect to happen
26+
27+
Ex. I expected [...]
28+
29+
**Reproducible steps**
30+
31+
> How would we reproduce this bug? Please walk us through it step by step. Plain-text snippets preferred but screenshots welcome.
32+
33+
1.
34+
2.
35+
3.
36+
37+
**What is your environment?**
38+
39+
> Include any computer hardware, operating system, framework, browser, time-of-day or other contextual information related to your issue
40+
41+
- Ex. Version of this software [e.g. vX.Y.Z]
42+
- Ex. Operating System: [e.g. MacOSX with Docker Desktop vX.Y]
43+
- ...
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: New Feature
3+
about: Suggest a new feature for us to implement
4+
title: '[New Feature]: '
5+
labels: 'enhancement'
6+
assignees: ''
7+
8+
---
9+
10+
**Checked for duplicates**
11+
12+
> Have you checked for duplicate issue tickets?
13+
14+
- Ex. Yes - I've already checked
15+
- Ex. No - I haven't checked
16+
17+
**Alternatives considered**
18+
19+
> Have you considered alternative solutions to your feature request?
20+
21+
- Ex. Yes - and alternatives don't suffice
22+
- Ex. No - I haven't considered
23+
24+
**Related problems**
25+
26+
> Is your feature request related to any problems? Please help us understand if so, including linking to any other issue tickets.
27+
28+
Ex. I'm frustrated when [...] happens as documented in issue-XYZ
29+
30+
**Describe the feature request**
31+
32+
> A clear and concise description of your request.
33+
34+
Ex. I need or want [...]

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## Purpose
2+
- Clear, easy-to-understand sentences outlining the purpose of the PR
3+
## Proposed Changes
4+
- [ADD] ...
5+
- [CHANGE] ...
6+
- [FIX] ...
7+
## Issues
8+
- Links to relevant issues
9+
- Example: issue-XYZ
10+
## Testing
11+
- Provide some proof you've tested your changes
12+
- Example: test results available at ...
13+
- Example: tested on operating system ...

.github/workflows/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The `publish-cws-image` job is the CD component of the workflow, triggered upon
2222

2323
- [**Services**](https://docs.github.com/en/actions/using-containerized-services/about-service-containers):
2424
- MariaDB
25-
- Image: mariadb:10.3
25+
- Image: mariadb:10.6
2626
- Ports: 3306:3306
2727
- [**checkout**](https://github.com/marketplace/actions/checkout): This action checks out the repository under `$GITHUB_WORKSPACE`, so the workflow can access it.
2828
- Set up JDK 11:
@@ -37,7 +37,7 @@ The `publish-cws-image` job is the CD component of the workflow, triggered upon
3737
- **Download Logstash**:
3838
- [**download-file-action**](https://github.com/marketplace/actions/download-file-to-workspace): This action downloads a file from the internet into the workspace
3939
- Downloads Logstash using a URL
40-
- Renames the file as `logstash-8.8.0.zip`
40+
- Renames the file as `logstash-8.12.0.zip`
4141
- Stores Logstash in appropriate directory
4242
- **Check for Logstash**:
4343
- List files in the directory where Logstash is expected

.github/workflows/camunda.yml

Lines changed: 37 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
services:
2323
mdb103:
24-
image: mariadb:10.3
24+
image: mariadb:10.6
2525
ports:
2626
- 3306:3306
2727
env:
@@ -31,12 +31,12 @@ jobs:
3131
--name mdb103
3232
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535

36-
- name: Set up JDK 11
37-
uses: actions/setup-java@v3
36+
- name: Set up JDK 17
37+
uses: actions/setup-java@v4
3838
with:
39-
java-version: '11'
39+
java-version: '17'
4040
distribution: 'temurin'
4141
cache: maven
4242

@@ -46,11 +46,18 @@ jobs:
4646
chmod +x generate-certs.sh
4747
./generate-certs.sh
4848
49+
- name: Set up Keystore storepass
50+
run: |
51+
mkdir ~/.cws/
52+
chmod 700 ~/.cws/
53+
echo ${{ secrets.KEYSTORE_PASSWORD }} > ~/.cws/creds
54+
chmod 600 ~/.cws/creds
55+
4956
- name: Download Logstash
5057
uses: carlosperate/download-file-action@v1
5158
with:
52-
file-url: https://artifacts.elastic.co/downloads/logstash/logstash-8.8.0-windows-x86_64.zip
53-
file-name: logstash-8.8.0.zip
59+
file-url: https://artifacts.elastic.co/downloads/logstash/logstash-8.12.0-windows-x86_64.zip
60+
file-name: logstash-8.12.0.zip
5461
location: install/logging/
5562

5663
- name: Check for Logstash
@@ -78,7 +85,7 @@ jobs:
7885

7986
- name: Show CWS Log
8087
run: |
81-
cd dist/console-only/cws/server/apache-tomcat-9.0.72/logs
88+
cd dist/console-only/cws/server/apache-tomcat-9.0.75/logs
8289
ls -al
8390
8491
- name: Set up Google Chrome
@@ -100,22 +107,22 @@ jobs:
100107
shell: bash
101108

102109
- name: Upload Jacoco report
103-
uses: actions/upload-artifact@v3
110+
uses: actions/upload-artifact@v4
104111
with:
105112
name: jacoco-report
106113
path: jacoco-reports/aggregate/index.html
107114

108115
- name: Upload test screenshots
109116
if: ${{ always() && steps.build.outcome == 'success' }}
110-
uses: actions/upload-artifact@v3
117+
uses: actions/upload-artifact@v4
111118
with:
112119
name: test-screenshots
113120
path: test-screenshots/
114121

115122
- name: Send custom JSON data to Slack workflow
116123
if: ${{ always() && contains(env.TEAM, github.actor) }}
117124
id: slack
118-
uses: slackapi/slack-github-action@v1.19.0
125+
uses: slackapi/slack-github-action@v1.25.0
119126
with:
120127
# This data can be any valid JSON from a previous step in the GitHub Action
121128
payload: |
@@ -144,7 +151,7 @@ jobs:
144151

145152
services:
146153
mdb103:
147-
image: mariadb:10.3
154+
image: mariadb:10.6
148155
ports:
149156
- 3306:3306
150157
env:
@@ -154,12 +161,12 @@ jobs:
154161
--name mdb103
155162
156163
steps:
157-
- uses: actions/checkout@v3
164+
- uses: actions/checkout@v4
158165

159-
- name: Set up JDK 11
160-
uses: actions/setup-java@v3
166+
- name: Set up JDK 17
167+
uses: actions/setup-java@v4
161168
with:
162-
java-version: '11'
169+
java-version: '17'
163170
distribution: 'temurin'
164171
cache: maven
165172

@@ -169,11 +176,18 @@ jobs:
169176
chmod +x generate-certs.sh
170177
./generate-certs.sh
171178
179+
- name: Set up Keystore storepass
180+
run: |
181+
mkdir ~/.cws/
182+
chmod 700 ~/.cws/
183+
echo ${{ secrets.KEYSTORE_PASSWORD }} > ~/.cws/creds
184+
chmod 600 ~/.cws/creds
185+
172186
- name: Download Logstash
173187
uses: carlosperate/download-file-action@v1
174188
with:
175-
file-url: https://artifacts.elastic.co/downloads/logstash/logstash-8.8.0-windows-x86_64.zip
176-
file-name: logstash-8.8.0.zip
189+
file-url: https://artifacts.elastic.co/downloads/logstash/logstash-8.12.0-windows-x86_64.zip
190+
file-name: logstash-8.12.0.zip
177191
location: install/logging/
178192

179193
- name: Check for Logstash
@@ -201,7 +215,7 @@ jobs:
201215

202216
- name: Show CWS Log
203217
run: |
204-
cd dist/console-only/cws/server/apache-tomcat-9.0.72/logs
218+
cd dist/console-only/cws/server/apache-tomcat-9.0.75/logs
205219
ls -al
206220
207221
- name: Set up Google Chrome
@@ -219,15 +233,15 @@ jobs:
219233

220234
- name: Upload test screenshots
221235
if: ${{ always() && steps.build.outcome == 'success' }}
222-
uses: actions/upload-artifact@v3
236+
uses: actions/upload-artifact@v4
223237
with:
224238
name: test-screenshots-advanced
225239
path: test-screenshots/
226240

227241
- name: Send custom JSON data to Slack workflow
228242
if: ${{ always() && contains(env.TEAM, github.actor) }}
229243
id: slack
230-
uses: slackapi/slack-github-action@v1.19.0
244+
uses: slackapi/slack-github-action@v1.25.0
231245
with:
232246
# This data can be any valid JSON from a previous step in the GitHub Action
233247
payload: |
@@ -255,10 +269,10 @@ jobs:
255269

256270
steps:
257271
- name: Check out the repo
258-
uses: actions/checkout@v3
272+
uses: actions/checkout@v4
259273

260274
- name: Set up JDK 11
261-
uses: actions/setup-java@v3
275+
uses: actions/setup-java@v4
262276
with:
263277
java-version: '11'
264278
distribution: 'temurin'

.github/workflows/ldap.yml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
services:
2323
mdb103:
24-
image: mariadb:10.3
24+
image: mariadb:10.6
2525
ports:
2626
- 3306:3306
2727
env:
@@ -31,12 +31,12 @@ jobs:
3131
--name mdb103
3232
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535

36-
- name: Set up JDK 11
37-
uses: actions/setup-java@v3
36+
- name: Set up JDK 17
37+
uses: actions/setup-java@v4
3838
with:
39-
java-version: '11'
39+
java-version: '17'
4040
distribution: 'temurin'
4141
cache: maven
4242

@@ -46,11 +46,18 @@ jobs:
4646
chmod +x generate-certs.sh
4747
./generate-certs.sh
4848
49+
- name: Set up Keystore storepass
50+
run: |
51+
mkdir ~/.cws/
52+
chmod 700 ~/.cws/
53+
echo ${{ secrets.KEYSTORE_PASSWORD }} > ~/.cws/creds
54+
chmod 600 ~/.cws/creds
55+
4956
- name: Download Logstash
50-
uses: carlosperate/download-file-action@v1
57+
uses: carlosperate/download-file-action@v2
5158
with:
52-
file-url: https://artifacts.elastic.co/downloads/logstash/logstash-8.8.0-windows-x86_64.zip
53-
file-name: logstash-8.8.0.zip
59+
file-url: https://artifacts.elastic.co/downloads/logstash/logstash-8.12.0-windows-x86_64.zip
60+
file-name: logstash-8.12.0.zip
5461
location: install/logging/
5562

5663
- name: Check for Logstash
@@ -83,7 +90,7 @@ jobs:
8390

8491
- name: Show CWS Log
8592
run: |
86-
cd dist/console-only/cws/server/apache-tomcat-9.0.72/logs
93+
cd dist/console-only/cws/server/apache-tomcat-9.0.75/logs
8794
ls -al
8895
8996
- name: Set up Google Chrome
@@ -102,7 +109,7 @@ jobs:
102109
- name: Send custom JSON data to Slack workflow
103110
if: ${{ always() && contains(env.TEAM, github.actor) }}
104111
id: slack
105-
uses: slackapi/slack-github-action@v1.19.0
112+
uses: slackapi/slack-github-action@v1.25.0
106113
with:
107114
# This data can be any valid JSON from a previous step in the GitHub Action
108115
payload: |

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ install/logging/logstash-*.zip
3434
/jacoco-reports
3535
/test-screenshots
3636

37-
*.cnf
37+
*.cnf

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [X.Y.Z](https://github.com/NASA-AMMOS/<repo_name>/releases/tag/X.Y.Z) - 2023-MM-DD
9+
10+
### Added
11+
12+
-
13+

0 commit comments

Comments
 (0)