Skip to content

Commit 6c67511

Browse files
authored
Merge branch 'main' into issue/1327
2 parents 1a33af2 + 7df9565 commit 6c67511

File tree

4 files changed

+7
-55
lines changed

4 files changed

+7
-55
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
#
44
# These are explicitly windows files and should use crlf
55
*.bat text eol=crlf
6-

.github/workflows/pullrequest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
cache: maven
3030

3131
- name: Initialize CodeQL
32-
uses: github/codeql-action/init@a8849fbe6341625acb2e18f7f32e53b734d6e1e3
32+
uses: github/codeql-action/init@97aac9bb5668e73a3626129e9abc4164b2de3a7a
3333
with:
3434
languages: java
3535

@@ -55,4 +55,4 @@ jobs:
5555
verbose: true # optional (default = false)
5656

5757
- name: Perform CodeQL Analysis
58-
uses: github/codeql-action/analyze@a8849fbe6341625acb2e18f7f32e53b734d6e1e3
58+
uses: github/codeql-action/analyze@97aac9bb5668e73a3626129e9abc4164b2de3a7a

.github/workflows/static-code-scanning.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333

3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL
36-
uses: github/codeql-action/init@a8849fbe6341625acb2e18f7f32e53b734d6e1e3
36+
uses: github/codeql-action/init@97aac9bb5668e73a3626129e9abc4164b2de3a7a
3737
with:
3838
languages: java
3939

4040
- name: Autobuild
41-
uses: github/codeql-action/autobuild@a8849fbe6341625acb2e18f7f32e53b734d6e1e3
41+
uses: github/codeql-action/autobuild@97aac9bb5668e73a3626129e9abc4164b2de3a7a
4242

4343
- name: Perform CodeQL Analysis
44-
uses: github/codeql-action/analyze@a8849fbe6341625acb2e18f7f32e53b734d6e1e3
44+
uses: github/codeql-action/analyze@97aac9bb5668e73a3626129e9abc4164b2de3a7a

pom.xml

Lines changed: 2 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>org.slf4j</groupId>
7171
<artifactId>slf4j-api</artifactId>
72-
<version>2.0.16</version>
72+
<version>2.0.17</version>
7373
</dependency>
7474

7575
<!-- test -->
@@ -473,54 +473,7 @@
473473
<plugin>
474474
<groupId>com.diffplug.spotless</groupId>
475475
<artifactId>spotless-maven-plugin</artifactId>
476-
<version>2.30.0</version>
477-
<configuration>
478-
<!-- optional: limit format enforcement to just the files changed by this feature branch -->
479-
<!-- <ratchetFrom>origin/main</ratchetFrom>-->
480-
<formats>
481-
<!-- you can define as many formats as you want, each is independent -->
482-
<format>
483-
<!-- define the files to apply to -->
484-
<includes>
485-
<include>.gitattributes</include>
486-
<include>.gitignore</include>
487-
</includes>
488-
<!-- define the steps to apply to those files -->
489-
<trimTrailingWhitespace/>
490-
<endWithNewline/>
491-
<indent>
492-
<spaces>true</spaces>
493-
<spacesPerTab>4</spacesPerTab>
494-
</indent>
495-
</format>
496-
</formats>
497-
<!-- define a language-specific format -->
498-
<java>
499-
<palantirJavaFormat/>
500-
501-
<indent>
502-
<spaces>true</spaces>
503-
<spacesPerTab>4</spacesPerTab>
504-
</indent>
505-
<importOrder/>
506-
507-
<removeUnusedImports/>
508-
<formatAnnotations/>
509-
510-
</java>
511-
</configuration>
512-
<executions>
513-
<execution>
514-
<goals>
515-
<goal>check</goal>
516-
</goals>
517-
</execution>
518-
</executions>
519-
</plugin>
520-
<plugin>
521-
<groupId>com.diffplug.spotless</groupId>
522-
<artifactId>spotless-maven-plugin</artifactId>
523-
<version>2.43.0</version>
476+
<version>2.44.3</version>
524477
<configuration>
525478
<!-- optional: limit format enforcement to just the files changed by this feature branch -->
526479
<!-- <ratchetFrom>origin/main</ratchetFrom>-->

0 commit comments

Comments
 (0)