Skip to content

Commit 1b6cb6e

Browse files
committed
updating several dependencies
Signed-off-by: Amit Galitzky <amgalitz@amazon.com>
1 parent 4c545ab commit 1b6cb6e

File tree

4 files changed

+22
-18
lines changed

4 files changed

+22
-18
lines changed

.github/workflows/maven-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
distribution: temurin # Temurin is a distribution of adoptium
2929
java-version: 21
3030
- uses: actions/checkout@v4
31-
- uses: aws-actions/configure-aws-credentials@v4.0.1
31+
- uses: aws-actions/configure-aws-credentials@v4.0.2
3232
with:
3333
role-to-assume: ${{ secrets.PUBLISH_SNAPSHOTS_ROLE }}
3434
aws-region: us-east-1

.github/workflows/test_build_multi_platform.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,22 @@ jobs:
6969
# this image tag is subject to change as more dependencies and updates will arrive over time
7070
image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }}
7171
# need to switch to root so that github actions can install runner binary on container without permission issues.
72-
options: --user root
72+
options: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
7373

7474
env:
7575
JENKINS_URL: build.ci.opensearch.org
7676

7777
steps:
78+
- name: Run start commands
79+
run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
7880
- name: Setup Java ${{ matrix.java }}
79-
uses: actions/setup-java@v3
81+
uses: actions/setup-java@v4
8082
with:
8183
distribution: 'temurin'
8284
java-version: ${{ matrix.java }}
8385

8486
- name: Checkout AD
85-
uses: actions/checkout@v3
87+
uses: actions/checkout@v4
8688

8789
- name: Assemble / build / mavenlocal / integTest
8890
run: |
@@ -106,7 +108,7 @@ jobs:
106108

107109
steps:
108110
- name: Setup Java ${{ matrix.java }}
109-
uses: actions/setup-java@v3
111+
uses: actions/setup-java@v4
110112
with:
111113
distribution: 'temurin'
112114
java-version: ${{ matrix.java }}
@@ -122,7 +124,7 @@ jobs:
122124
./gradlew build -x spotlessJava
123125
# coverage.gradle is only applied in single local node test
124126
- name: Upload Coverage Report
125-
uses: codecov/codecov-action@v4
127+
uses: codecov/codecov-action@v5
126128
env:
127129
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
128130
with:

.github/workflows/test_bwc.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,20 @@ jobs:
3030
# this image tag is subject to change as more dependencies and updates will arrive over time
3131
image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }}
3232
# need to switch to root so that github actions can install runner binary on container without permission issues.
33-
options: --user root
33+
options: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
3434

3535
steps:
36+
- name: Run start commands
37+
run: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
3638
- name: Setup Java ${{ matrix.java }}
37-
uses: actions/setup-java@v3
39+
uses: actions/setup-java@v4
3840
with:
3941
distribution: 'temurin'
4042
java-version: ${{ matrix.java }}
4143

4244
# anomaly-detection
4345
- name: Checkout AD
44-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4547

4648
- name: Assemble anomaly-detection
4749
run: |

build.gradle

+9-9
Original file line numberDiff line numberDiff line change
@@ -142,20 +142,20 @@ dependencies {
142142

143143

144144
implementation "org.jacoco:org.jacoco.agent:0.8.12"
145-
implementation ("org.jacoco:org.jacoco.ant:0.8.11") {
145+
implementation ("org.jacoco:org.jacoco.ant:0.8.12") {
146146
exclude group: 'org.ow2.asm', module: 'asm-commons'
147147
exclude group: 'org.ow2.asm', module: 'asm'
148148
exclude group: 'org.ow2.asm', module: 'asm-tree'
149149
}
150150

151151
// used for output encoding of config descriptions
152-
implementation group: 'org.owasp.encoder' , name: 'encoder', version: '1.2.3'
152+
implementation group: 'org.owasp.encoder' , name: 'encoder', version: '1.3.1'
153153

154154
testImplementation group: 'pl.pragmatists', name: 'JUnitParams', version: '1.1.1'
155-
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.14.1'
155+
testImplementation group: 'org.mockito', name: 'mockito-core', version: '5.14.2'
156156
testImplementation group: 'org.objenesis', name: 'objenesis', version: '3.3'
157-
testImplementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.14.9'
158-
testImplementation group: 'net.bytebuddy', name: 'byte-buddy-agent', version: '1.14.9'
157+
testImplementation group: 'net.bytebuddy', name: 'byte-buddy', version: '1.15.10'
158+
testImplementation group: 'net.bytebuddy', name: 'byte-buddy-agent', version: '1.15.10'
159159
testCompileOnly 'org.apiguardian:apiguardian-api:1.1.2'
160160
// jupiter is required to run unit tests not inherited from OpenSearchTestCase (e.g., PreviousValueImputerTests)
161161
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.2'
@@ -186,7 +186,7 @@ allprojects {
186186
version = "${opensearch_build}"
187187

188188
plugins.withId('jacoco') {
189-
jacoco.toolVersion = '0.8.11'
189+
jacoco.toolVersion = '0.8.12'
190190
}
191191
}
192192

@@ -218,10 +218,10 @@ configurations.all {
218218
force "org.apache.httpcomponents.client5:httpclient5:${versions.httpclient5}"
219219
force "commons-codec:commons-codec:${versions.commonscodec}"
220220

221-
force "org.mockito:mockito-core:5.14.1"
221+
force "org.mockito:mockito-core:5.14.2"
222222
force "org.objenesis:objenesis:3.3"
223-
force "net.bytebuddy:byte-buddy:1.14.9"
224-
force "net.bytebuddy:byte-buddy-agent:1.14.9"
223+
force "net.bytebuddy:byte-buddy:1.15.10"
224+
force "net.bytebuddy:byte-buddy-agent:1.15.10"
225225
force "com.google.code.gson:gson:2.8.9"
226226
force "junit:junit:4.13.2"
227227

0 commit comments

Comments
 (0)