Skip to content

Commit 8ec13f4

Browse files
committed
Merge branch 'release/v1.3.1'
2 parents 0de44ff + 586b977 commit 8ec13f4

File tree

4 files changed

+15
-12
lines changed

4 files changed

+15
-12
lines changed

.github/renovate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
":semanticCommitsDisabled"
6+
],
7+
"labels": ["dependencies"]
8+
}

.github/workflows/release-from-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release from Tag
33
on:
44
push:
55
tags:
6-
- '*'
6+
- 'v[0-9]+.[0-9]+.[0-9]+'
77
workflow_dispatch:
88

99
jobs:
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
contents: write
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- uses: ncipollo/release-action@v1
1717
with:
1818
token: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,9 @@ name: Build
1212

1313
on:
1414
push:
15-
branches-ignore:
16-
- master
17-
- experimental/**
15+
branches:
16+
- develop
1817
pull_request:
19-
types: [opened, synchronize, reopened]
20-
branches-ignore:
21-
- master
22-
- experimental/**
2318
workflow_dispatch:
2419

2520
jobs:
@@ -40,7 +35,7 @@ jobs:
4035
java-version: ${{ matrix.java }}
4136
maven-executable: ./mvnw
4237
sonar-run-on-os: ubuntu-latest
43-
sonar-run-on-java-version: 11
38+
sonar-run-on-java-version: 21
4439
sonar-token: ${{ secrets.SONAR_TOKEN }}
4540
github-token: ${{ secrets.GITHUB_TOKEN }}
4641
```

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ runs:
4545

4646
steps:
4747
- name: Checkout code
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949
with:
5050
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
5151

5252
- name: Setup JDK
53-
uses: actions/setup-java@v4
53+
uses: actions/setup-java@v5
5454
with:
5555
distribution: ${{ inputs.java-distribution }}
5656
java-version: ${{ inputs.java-version }}

0 commit comments

Comments
 (0)