Skip to content

Commit b50b815

Browse files
committed
⬆️ update github actions
1 parent 188064f commit b50b815

File tree

9 files changed

+16
-19
lines changed

9 files changed

+16
-19
lines changed

.github/workflows/_build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@ jobs:
1111
strategy:
1212
matrix:
1313
java-version:
14+
- "25"
1415
- "21"
16+
- "17"
1517
- "11"
1618
- "8"
1719
distribution:
1820
- "temurin"
1921

2022
steps:
21-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2224
with:
2325
submodules: recursive
2426

.github/workflows/_codeql.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,14 @@ jobs:
2626

2727
strategy:
2828
fail-fast: false
29-
matrix:
30-
language: [ 'java' ]
31-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
32-
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
3329

3430
steps:
3531
- name: Checkout repository
36-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3733

3834
# Initializes the CodeQL tools for scanning.
3935
- name: Initialize CodeQL
40-
uses: github/codeql-action/init@v3
36+
uses: github/codeql-action/init@v4
4137
with:
4238
languages: ${{ matrix.language }}
4339
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -51,7 +47,7 @@ jobs:
5147
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
5248
# If this step fails, then you should remove it and run the build manually (see below)
5349
- name: Autobuild
54-
uses: github/codeql-action/autobuild@v3
50+
uses: github/codeql-action/autobuild@v4
5551

5652
# ℹ️ Command-line programs to run using the OS shell.
5753
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -64,6 +60,6 @@ jobs:
6460
# ./location_of_script_within_repo/buildscript.sh
6561

6662
- name: Perform CodeQL Analysis
67-
uses: github/codeql-action/analyze@v3
63+
uses: github/codeql-action/analyze@v4
6864
with:
69-
category: "/language:${{matrix.language}}"
65+
category: "/language:java"

.github/workflows/_publish-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
submodules: recursive
1414

.github/workflows/_publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Publish Documentation
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
submodules: recursive
1515

.github/workflows/_static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Check Code Style
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
with:
1313
submodules: recursive
1414

.github/workflows/_test-code-samples.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,14 @@ jobs:
2121
strategy:
2222
matrix:
2323
java-version:
24-
- "21"
25-
- "17"
24+
- "25"
2625
- "11"
2726
- "8"
2827
distribution:
2928
- "temurin"
3029

3130
steps:
32-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3332
with:
3433
submodules: recursive
3534
- name: Set up JDK ${{ matrix.java-version }}

.github/workflows/_test-integrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- "temurin"
3131

3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
with:
3535
submodules: recursive
3636

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
secrets: inherit
1717
codeql:
1818
uses: ./.github/workflows/_codeql.yml
19-
needs: build
19+
needs: static_analysis
2020
permissions:
2121
contents: read
2222
actions: read

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@
447447
<org.mockito.inline.version>4.11.0</org.mockito.inline.version>
448448
<org.mockito.junit.jupiter.version>4.11.0</org.mockito.junit.jupiter.version>
449449
<org.projectlombok.lombok-mapstruct-binding.version>0.2.0</org.projectlombok.lombok-mapstruct-binding.version>
450-
<org.projectlombok.version>1.18.32</org.projectlombok.version>
450+
<org.projectlombok.version>1.18.38</org.projectlombok.version>
451451
<org.slf4j.version>2.0.17</org.slf4j.version>
452452
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
453453
<surefire.addOpens></surefire.addOpens>

0 commit comments

Comments
 (0)