Skip to content

Commit e6f64fb

Browse files
committed
Merge branch 'main' of github.com:binaryeq/daleq
# Conflicts: # .github/workflows/maven-publish.yml
2 parents 6c81614 + 17b21bb commit e6f64fb

3 files changed

Lines changed: 22 additions & 22 deletions

File tree

.github/workflows/maven-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
packages: write
1919

2020
steps:
21-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22-
- name: Set up JDK 17
23-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
22+
- name: Set up JDK 11
23+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
2424
with:
2525
java-version: '17'
2626
distribution: 'temurin'

.github/workflows/maven.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
runs-on: ubuntu-latest
2323

2424
steps:
25-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
25+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2626

2727
# Install Python to run pre-commit hooks for linting GitHub Actions and other files.
2828
- name: Set up Python
29-
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
29+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
3030
with:
3131
python-version: '3.11'
3232

@@ -40,7 +40,7 @@ jobs:
4040
4141
# Install Java and Souffle.
4242
- name: Set up JDK 17
43-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
43+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
4444
with:
4545
java-version: '17'
4646
distribution: 'temurin'

pom.xml

100755100644
Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -36,32 +36,32 @@
3636
<dependency>
3737
<groupId>com.google.code.gson</groupId>
3838
<artifactId>gson</artifactId>
39-
<version>2.11.0</version>
39+
<version>2.13.2</version>
4040
</dependency>
4141
<dependency>
4242
<groupId>commons-cli</groupId>
4343
<artifactId>commons-cli</artifactId>
44-
<version>1.9.0</version>
44+
<version>1.10.0</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.google.guava</groupId>
4848
<artifactId>guava</artifactId>
49-
<version>33.3.1-jre</version>
49+
<version>33.5.0-jre</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.slf4j</groupId>
5353
<artifactId>slf4j-api</artifactId>
54-
<version>2.0.16</version>
54+
<version>2.0.17</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>org.slf4j</groupId>
5858
<artifactId>slf4j-simple</artifactId>
59-
<version>2.0.16</version>
59+
<version>2.0.17</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.ow2.asm</groupId>
6363
<artifactId>asm-tree</artifactId>
64-
<version>9.7.1</version>
64+
<version>9.8</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>net.lingala.zip4j</groupId>
@@ -71,23 +71,23 @@
7171
<dependency>
7272
<groupId>org.antlr</groupId>
7373
<artifactId>antlr4-runtime</artifactId>
74-
<version>4.13.0</version>
74+
<version>4.13.2</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>org.antlr</groupId>
7878
<artifactId>antlr4</artifactId>
79-
<version>4.13.0</version>
79+
<version>4.13.2</version>
8080
</dependency>
8181
<dependency>
8282
<groupId>com.github.javaparser</groupId>
8383
<artifactId>javaparser-core</artifactId>
84-
<version>3.26.1</version>
84+
<version>3.27.0</version>
8585
</dependency>
8686

8787
<dependency>
8888
<groupId>io.github.java-diff-utils</groupId>
8989
<artifactId>java-diff-utils</artifactId>
90-
<version>4.15</version>
90+
<version>4.16</version>
9191
</dependency>
9292
<dependency>
9393
<groupId>org.apache.commons</groupId>
@@ -99,26 +99,26 @@
9999
<dependency>
100100
<groupId>commons-cli</groupId>
101101
<artifactId>commons-cli</artifactId>
102-
<version>1.9.0</version>
102+
<version>1.10.0</version>
103103
</dependency>
104104
<dependency>
105105
<groupId>org.jsoup</groupId>
106106
<artifactId>jsoup</artifactId>
107-
<version>1.20.1</version>
107+
<version>1.21.2</version>
108108
</dependency>
109109

110110
<!-- necessary to traverse resources indep on whether they are in the file system or in a zip, see issue https://github.com/binaryeq/daleq/issues/28 -->
111111
<dependency>
112112
<groupId>org.springframework</groupId>
113113
<artifactId>spring-core</artifactId>
114-
<version>6.2.8</version>
114+
<version>6.2.11</version>
115115
</dependency>
116116

117117
<!-- testing -->
118118
<dependency>
119119
<groupId>org.junit.jupiter</groupId>
120120
<artifactId>junit-jupiter</artifactId>
121-
<version>5.11.3</version>
121+
<version>5.13.4</version>
122122
<scope>test</scope>
123123
</dependency>
124124

@@ -129,7 +129,7 @@
129129
<plugin>
130130
<groupId>org.antlr</groupId>
131131
<artifactId>antlr4-maven-plugin</artifactId>
132-
<version>4.13.0</version>
132+
<version>4.13.2</version>
133133
<executions>
134134
<execution>
135135
<goals>
@@ -141,7 +141,7 @@
141141
<plugin>
142142
<groupId>org.codehaus.mojo</groupId>
143143
<artifactId>build-helper-maven-plugin</artifactId>
144-
<version>3.1.0</version>
144+
<version>3.6.1</version>
145145
<executions>
146146
<execution>
147147
<id>add-source</id>

0 commit comments

Comments
 (0)