File tree Expand file tree Collapse file tree 11 files changed +24
-24
lines changed Expand file tree Collapse file tree 11 files changed +24
-24
lines changed Original file line number Diff line number Diff line change 22
22
deploy :
23
23
name : Deploy
24
24
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
25
- runs-on : ubuntu-20 .04
25
+ runs-on : ubuntu-22 .04
26
26
steps :
27
27
28
28
- name : Clone source code
Original file line number Diff line number Diff line change 31
31
run-integration-tests :
32
32
name : Integration Tests
33
33
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
34
- runs-on : ubuntu-20 .04
34
+ runs-on : ubuntu-22 .04
35
35
# https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
36
36
strategy :
37
37
matrix :
Original file line number Diff line number Diff line change 31
31
run-integration-tests :
32
32
name : Integration Tests
33
33
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
34
- runs-on : ubuntu-20 .04
34
+ runs-on : ubuntu-22 .04
35
35
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idservices
36
36
services :
37
37
db :
Original file line number Diff line number Diff line change 31
31
run-integration-tests :
32
32
name : Integration Tests
33
33
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
34
- runs-on : ubuntu-20 .04
34
+ runs-on : ubuntu-22 .04
35
35
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idservices
36
36
services :
37
37
db :
Original file line number Diff line number Diff line change 27
27
populate-maven-cache :
28
28
name : Populate Maven cache
29
29
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
30
- runs-on : ubuntu-20 .04
30
+ runs-on : ubuntu-22 .04
31
31
steps :
32
32
33
33
- name : Clone source code
Original file line number Diff line number Diff line change 19
19
setup-server :
20
20
name : Provision a server
21
21
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
22
- runs-on : ubuntu-20 .04
22
+ runs-on : ubuntu-22 .04
23
23
steps :
24
24
25
25
- name : Clone source code
Original file line number Diff line number Diff line change 29
29
setup-server :
30
30
name : Setup a server
31
31
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
32
- runs-on : ubuntu-20 .04
32
+ runs-on : ubuntu-22 .04
33
33
steps :
34
34
35
35
- name : Clone source code
Original file line number Diff line number Diff line change 30
30
check-license :
31
31
name : Check license in file headers
32
32
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
33
- runs-on : ubuntu-20 .04
33
+ runs-on : ubuntu-22 .04
34
34
steps :
35
35
- name : Clone source code
36
36
uses : actions/checkout@v4.2.2 # https://github.com/actions/checkout
55
55
run-enforcer :
56
56
name : Run maven-enforcer-plugin
57
57
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
58
- runs-on : ubuntu-20 .04
58
+ runs-on : ubuntu-22 .04
59
59
steps :
60
60
- name : Clone source code
61
61
uses : actions/checkout@v4.2.2 # https://github.com/actions/checkout
Original file line number Diff line number Diff line change 23
23
update-mapping :
24
24
name : Update an issues state
25
25
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
26
- runs-on : ubuntu-20 .04
26
+ runs-on : ubuntu-22 .04
27
27
steps :
28
28
- name : Clone source code
29
29
uses : actions/checkout@v4.2.2 # https://github.com/actions/checkout
Original file line number Diff line number Diff line change 29
29
run-jest :
30
30
name : Unit Tests (Java Script)
31
31
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
32
- runs-on : ubuntu-20 .04
32
+ runs-on : ubuntu-22 .04
33
33
steps :
34
34
- name : Clone source code
35
35
uses : actions/checkout@v4.2.2 # https://github.com/actions/checkout
54
54
run-unit-tests :
55
55
name : Unit Tests (Java)
56
56
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
57
- runs-on : ubuntu-20 .04
57
+ runs-on : ubuntu-22 .04
58
58
steps :
59
59
- name : Clone source code
60
60
uses : actions/checkout@v4.2.2 # https://github.com/actions/checkout
Original file line number Diff line number Diff line change 1
1
# External Dependencies
2
2
3
- | Component | Production | GitHub Actions | docker-compose |
4
- | ------- | ------------------------ | ----------------------------- | ---------------------------------------- |
5
- | OS | Ubuntu 16.04.07 (Xenial) | Ubuntu 20 .04.6 (Focal Fossa ) | |
6
- | JDK | OracleJDK 8u151 | Adopt OpenJDK 8u292 | OpenJDK 8u121-jre on Debian 8.11 (Jessy) |
7
- | MySQL | 5.7.27 | 5.7.20 on Debian 8.11 (Jessy) | 5.7.20 on Debian 8.11 (Jessy) |
8
- | PostgreSQL | | 11.3 on Debian 9.13 (Stretch) | 11.3 on Debian 9.13 (Stretch) |
9
- | Python | 2.7.12, 3.5.2 | 3.8.10 | |
10
- | bash | 4.3.14 | | |
11
- | duplicity | 0.7.06 | | |
12
- | maven | | 3.9.9 | |
13
- | ansible | | | |
14
- | Docker API | | 1.41 | |
3
+ | Component | Production | GitHub Actions | docker-compose |
4
+ | ------- | ------------------------ | --------------------------------- | ---------------------------------------- |
5
+ | OS | Ubuntu 16.04.07 (Xenial) | Ubuntu 22 .04.5 (Jammy Jellyfish ) | |
6
+ | JDK | OracleJDK 8u151 | Adopt OpenJDK 8u292 | OpenJDK 8u121-jre on Debian 8.11 (Jessy) |
7
+ | MySQL | 5.7.27 | 5.7.20 on Debian 8.11 (Jessy) | 5.7.20 on Debian 8.11 (Jessy) |
8
+ | PostgreSQL | | 11.3 on Debian 9.13 (Stretch) | 11.3 on Debian 9.13 (Stretch) |
9
+ | Python | 2.7.12, 3.5.2 | 3.8.10 | |
10
+ | bash | 4.3.14 | | |
11
+ | duplicity | 0.7.06 | | |
12
+ | maven | | 3.9.9 | |
13
+ | ansible | | | |
14
+ | Docker API | | 1.41 | |
You can’t perform that action at this time.
0 commit comments