Skip to content

Commit 4a062d3

Browse files
authored
dependabot fixes (#1125)
1 parent 56f106e commit 4a062d3

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.github/workflows/combine-prs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
console.log('Combined: ' + combined);
9797
return combined
9898
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
99-
- uses: actions/checkout@v3.0.2
99+
- uses: actions/checkout@v3.1.0
100100
with:
101101
fetch-depth: 0
102102
# Creates a branch with other PR branches merged together

api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<properties>
1414
<project.root>${basedir}/..</project.root>
1515
<springfox.version>3.0.0</springfox.version>
16-
<okta-jwt.version>0.5.5</okta-jwt.version>
16+
<okta-jwt.version>0.5.7</okta-jwt.version>
1717
<sonar.coverage.exclusions>**/JobClient.java</sonar.coverage.exclusions>
1818
</properties>
1919

e2e-test/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>org.yaml</groupId>
3232
<artifactId>snakeyaml</artifactId>
33-
<version>1.32</version>
33+
<version>1.33</version>
3434
</dependency>
3535

3636
<dependency>

eventlogger/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<dependency>
8585
<groupId>com.amazonaws</groupId>
8686
<artifactId>aws-java-sdk</artifactId>
87-
<version>1.12.305</version>
87+
<version>1.12.319</version>
8888
</dependency>
8989
<dependency>
9090
<groupId>com.amazonaws</groupId>
@@ -106,7 +106,7 @@
106106
<dependency>
107107
<groupId>com.slack.api</groupId>
108108
<artifactId>slack-api-client</artifactId>
109-
<version>1.25.1</version>
109+
<version>1.26.1</version>
110110
</dependency>
111111
<dependency>
112112
<groupId>gov.cms.ab2d</groupId>

pom.xml

+4-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<parent>
2020
<groupId>org.springframework.boot</groupId>
2121
<artifactId>spring-boot-starter-parent</artifactId>
22-
<version>2.7.3</version>
22+
<version>2.7.4</version>
2323
<relativePath/> <!-- lookup parent from repository -->
2424
</parent>
2525
<groupId>gov.cms.ab2d</groupId>
@@ -32,14 +32,14 @@
3232
<properties>
3333
<project.root>${basedir}</project.root>
3434
<java.version>17</java.version>
35-
<hapi.version>6.1.1</hapi.version>
35+
<hapi.version>6.1.2</hapi.version>
3636
<mockito.inline.version>4.8.0</mockito.inline.version>
3737
<!-- eventlogger is imported first by all other modules, if that changes then
3838
okhttp3 must be imported first anywhere the slack client is used-->
3939
<okhttp3.version>4.10.0</okhttp3.version>
4040
<checkstyle.config>${project.root}/src/main/resources/checkstyle.xml</checkstyle.config>
4141
<logback-encoder.version>7.2</logback-encoder.version>
42-
<testcontainers.version>1.17.3</testcontainers.version>
42+
<testcontainers.version>1.17.5</testcontainers.version>
4343
<newrelic.version>7.10.0</newrelic.version>
4444
<postgres.version>42.5.0</postgres.version>
4545

@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>org.testcontainers</groupId>
7979
<artifactId>localstack</artifactId>
80-
<version>1.17.2</version>
80+
<version>1.17.5</version>
8181
<scope>test</scope>
8282
</dependency>
8383
</dependencies>
@@ -90,7 +90,6 @@
9090
<version>3.2.0</version>
9191
<configuration>
9292
<configLocation>${checkstyle.config}</configLocation>
93-
<encoding>UTF-8</encoding>
9493
<consoleOutput>true</consoleOutput>
9594
<failsOnError>true</failsOnError>
9695
<failOnViolation>true</failOnViolation>

0 commit comments

Comments
 (0)