Skip to content

Commit 7e9adbf

Browse files
committed
Release: com.io7m.seltzer 1.2.0
Change: Publish a com.io7m.seltzer.bom module. Change: Add convenient SLF4J logging. Change: Update org.junit:junit-bom:5.12.1 → 5.12.2. Change: Update org.junit:junit-bom:5.11.4 → 5.12.1. Change: Update codecov/codecov-action:5.1.2 → 5.3.1. Change: Update org.junit:junit-bom:5.11.3 → 5.11.4. Change: Update jqwik.version:1.9.1 → 1.9.2. Change: Update org.junit:junit-bom:5.11.2 → 5.11.3. Change: Update org.junit:junit-bom:5.11.1 → 5.11.2. Change: Update jqwik.version:1.9.0 → 1.9.1. Change: Update org.junit:junit-bom:5.11.0 → 5.11.1. Change: Update org.junit:junit-bom:5.10.3 → 5.11.0.
2 parents b3470d9 + 3fc0e2f commit 7e9adbf

File tree

22 files changed

+559
-32
lines changed

22 files changed

+559
-32
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ updates:
55
- package-ecosystem: "github-actions"
66
directory: "/"
77
schedule:
8-
interval: "daily"
8+
interval: "monthly"
99

1010
- package-ecosystem: "maven"
1111
directory: "/"
1212
schedule:
13-
interval: "daily"
13+
interval: "monthly"
1414

1515
target-branch: "develop"
1616
ignore:

.github/workflows/deploy.linux.temurin.lts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 21
25+
java-version: 23
2626
distribution: temurin
2727

2828
- name: Check PGP version

.github/workflows/main.linux.temurin.current.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: main.linux.temurin.current
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
1313

1414
jobs:
1515
build:
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 22
25+
java-version: 23
2626
distribution: 'temurin'
2727

2828
- name: Collect project version

.github/workflows/main.linux.temurin.lts.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: main.linux.temurin.lts
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
1313

1414
jobs:
1515
build:
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 21
25+
java-version: 23
2626
distribution: 'temurin'
2727

2828
- name: Collect project version
@@ -47,10 +47,10 @@ jobs:
4747
path: ./com.io7m.seltzer.tests/target/surefire-reports
4848

4949
- name: Coverage
50-
uses: codecov/codecov-action@v4.5.0
50+
uses: codecov/codecov-action@v5.4.2
5151
with:
5252
token: ${{ secrets.CODECOV_TOKEN }}
53-
file: com.io7m.seltzer.tests/target/site/jacoco-aggregate/jacoco.xml
53+
files: com.io7m.seltzer.tests/target/site/jacoco-aggregate/jacoco.xml
5454

5555
- name: Log in to Quay.io.
5656
uses: redhat-actions/podman-login@v1.7

.github/workflows/main.windows.temurin.current.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: main.windows.temurin.current
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
1313

1414
jobs:
1515
build:
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 22
25+
java-version: 23
2626
distribution: 'temurin'
2727

2828
- name: Collect project version

.github/workflows/main.windows.temurin.lts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: main.windows.temurin.lts
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
1313

1414
jobs:
1515
build:
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 21
25+
java-version: 23
2626
distribution: 'temurin'
2727

2828
- name: Collect project version

.github/workflows/pr.linux.temurin.current.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: pr.linux.temurin.current
99

1010
on:
1111
pull_request:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
1313

1414
jobs:
1515
build:
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 22
25+
java-version: 23
2626
distribution: 'temurin'
2727

2828
- name: Collect project version

.github/workflows/pr.linux.temurin.lts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: pr.linux.temurin.lts
99

1010
on:
1111
pull_request:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
1313

1414
jobs:
1515
build:
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 21
25+
java-version: 23
2626
distribution: 'temurin'
2727

2828
- name: Collect project version

.github/workflows/pr.windows.temurin.current.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: pr.windows.temurin.current
99

1010
on:
1111
pull_request:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
1313

1414
jobs:
1515
build:
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 22
25+
java-version: 23
2626
distribution: 'temurin'
2727

2828
- name: Collect project version

.github/workflows/pr.windows.temurin.lts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name: pr.windows.temurin.lts
99

1010
on:
1111
pull_request:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
1313

1414
jobs:
1515
build:
@@ -22,7 +22,7 @@ jobs:
2222
- name: JDK
2323
uses: actions/setup-java@v4
2424
with:
25-
java-version: 21
25+
java-version: 23
2626
distribution: 'temurin'
2727

2828
- name: Collect project version

0 commit comments

Comments
 (0)