@@ -40,10 +40,10 @@ jobs:
40
40
experimental : true
41
41
steps :
42
42
- name : Checkout Repository
43
- uses : actions/checkout@v3.2.0
43
+ uses : actions/checkout@v4
44
44
45
45
- name : Setup Java
46
- uses : actions/setup-java@v3.9.0
46
+ uses : actions/setup-java@v4
47
47
with :
48
48
distribution : " temurin"
49
49
java-version : " ${{ matrix.javaVersion }}"
62
62
63
63
- name : Scan project file system
64
64
id : scan
65
- uses : anchore/scan-action@v2
65
+ uses : anchore/scan-action@v5
66
66
with :
67
67
path : " ./"
68
68
fail-build : true
@@ -108,9 +108,9 @@ jobs:
108
108
109
109
- name : Upload Test Results to Artifacts
110
110
if : always()
111
- uses : actions/upload-artifact@v3.1.1
111
+ uses : actions/upload-artifact@v4
112
112
with :
113
- name : test-results-${{ matrix.cfengine }}
113
+ name : test-results-${{ matrix.cfengine }}-${{ matrix.coldboxVersion }}-jdk${{ matrix.javaVersion }}-es${{ matrix.ELASTICSEARCH_VERSION }}
114
114
path : |
115
115
test-harness/tests/results/**/*
116
116
@@ -121,9 +121,9 @@ jobs:
121
121
122
122
- name : Upload Debugging Log To Artifacts
123
123
if : ${{ failure() }}
124
- uses : actions/upload-artifact@v3.1.1
124
+ uses : actions/upload-artifact@v4
125
125
with :
126
- name : Failure Debugging Info - ${{ matrix.cfengine }}
126
+ name : Failure Debugging Info - ${{ matrix.cfengine }} | Coldbox ${{ matrix.coldboxVersion }} ( jdk${{ matrix.javaVersion }}-es${{ matrix.ELASTICSEARCH_VERSION }} )
127
127
path : |
128
128
.engine/**/logs/*
129
129
.engine/**/WEB-INF/cfusion/logs/*
0 commit comments