Skip to content

Commit 130c889

Browse files
authored
Merge branch 'main' into reduceCodeDuplication
2 parents 6630a06 + 8ea19c9 commit 130c889

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL

.github/workflows/publish-container-image.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222

2323
- name: Set up JDK 11
24-
uses: actions/setup-java@v2.5.0
24+
uses: actions/setup-java@v3
2525
with:
2626
distribution: 'temurin'
2727
java-version: 11

.github/workflows/run-tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
- name: Set up JDK 11
18-
uses: actions/setup-java@v2.5.0
18+
uses: actions/setup-java@v3
1919
with:
2020
distribution: 'temurin'
2121
java-version: 11

context-core/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<name>ATB Context Extraction Core Lib</name>
1717

1818
<properties>
19-
<cxf.version>3.5.0</cxf.version>
19+
<cxf.version>3.5.1</cxf.version>
2020
<jena.version>4.4.0</jena.version>
2121
</properties>
2222

@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.apache.logging.log4j</groupId>
3131
<artifactId>log4j-slf4j-impl</artifactId>
32-
<version>2.17.1</version>
32+
<version>2.17.2</version>
3333
</dependency>
3434
<dependency>
3535
<groupId>commons-io</groupId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<plugin>
114114
<groupId>org.apache.maven.plugins</groupId>
115115
<artifactId>maven-compiler-plugin</artifactId>
116-
<version>3.10.0</version>
116+
<version>3.10.1</version>
117117
<configuration>
118118
<release>${java.version}</release>
119119
</configuration>

0 commit comments

Comments
 (0)