Skip to content

Commit da254c3

Browse files
authored
Merge branch 'main' into refactor/update-group-id-and-package
2 parents 3e9039b + 0d01268 commit da254c3

6 files changed

Lines changed: 19 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
build:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Build and run tests
2020
uses: actions/setup-java@v5
2121
with:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Check Semantic PR
2+
on:
3+
pull_request:
4+
types: [opened, edited, synchronize, reopened]
5+
pull_request_target:
6+
types: [opened, edited, synchronize, reopened]
7+
8+
jobs:
9+
check:
10+
uses: reqstool/.github/.github/workflows/check-semantic-pr.yml@main

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v6
1313

1414
- name: Set up JDK
1515
uses: actions/setup-java@v5

.github/workflows/publish_gh_pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
url: ${{ steps.deployment.outputs.page_url }}
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
- name: Configure Pages
2828
uses: actions/configure-pages@v5
2929
- name: Install Node.js
30-
uses: actions/setup-node@v4
30+
uses: actions/setup-node@v6
3131
with:
3232
node-version: "24"
3333
- name: Install Antora
@@ -39,7 +39,7 @@ jobs:
3939
- name: Create site folders
4040
run: mkdir -p docs/build/site
4141
- name: Upload Artifacts
42-
uses: actions/upload-pages-artifact@v3
42+
uses: actions/upload-pages-artifact@v4
4343
with:
4444
path: docs/build/site
4545
- name: Deploy to GitHub Pages

.github/workflows/publish_maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
contents: read
2020
packages: write
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v6
2323
- name: Set up Java for publishing to Maven Central Repository
2424
uses: actions/setup-java@v5
2525
with:

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
<dependency>
8585
<groupId>com.fasterxml.jackson.dataformat</groupId>
8686
<artifactId>jackson-dataformat-yaml</artifactId>
87-
<version>2.21.0</version>
87+
<version>2.21.1</version>
8888
</dependency>
8989
<dependency>
9090
<groupId>org.junit.jupiter</groupId>
@@ -100,7 +100,7 @@
100100
<plugin>
101101
<groupId>org.apache.maven.plugins</groupId>
102102
<artifactId>maven-surefire-plugin</artifactId>
103-
<version>3.5.4</version>
103+
<version>3.5.5</version>
104104
<configuration>
105105
<additionalClasspathElements>
106106
<additionalClasspathElement>src/test/java/</additionalClasspathElement>
@@ -250,7 +250,7 @@
250250
<plugin>
251251
<groupId>org.apache.maven.plugins</groupId>
252252
<artifactId>maven-surefire-plugin</artifactId>
253-
<version>3.5.4</version>
253+
<version>3.5.5</version>
254254
</plugin>
255255
<plugin>
256256
<groupId>org.jacoco</groupId>

0 commit comments

Comments
 (0)