Skip to content

Commit 1c21d85

Browse files
committed
Release: com.io7m.dixmont 3.0.0
Change: (Backwards incompatible) Upgrade to Jackson 3.0.2. (Ticket: #68) Change: Add convenient List/Map/Set methods. (Ticket: #1) Change: Update actions/upload-artifact:4.6.2 → 5.0.0. Change: Update ch.qos.logback:logback-classic:1.5.19 → 1.5.20. Change: Update com.fasterxml.jackson:jackson-bom:2.19.2 → 2.20.1. Change: Update org.junit:junit-bom:5.14.0 → 5.14.1. Change: Update ch.qos.logback:logback-classic:1.5.18 → 1.5.19. Change: Update org.junit:junit-bom:5.13.4 → 5.14.0.
2 parents 8558841 + 6a3d4a5 commit 1c21d85

28 files changed

+497
-202
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ updates:
66
directory: "/"
77
schedule:
88
interval: "monthly"
9+
cooldown:
10+
default-days: 21
911

1012
- package-ecosystem: "maven"
1113
directory: "/"
1214
schedule:
1315
interval: "monthly"
16+
cooldown:
17+
default-days: 21
1418

1519
target-branch: "develop"
1620
ignore:

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2222
with:
2323
submodules: true
2424

2525
- name: JDK
26-
uses: actions/setup-java@v4
26+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2727
with:
28-
java-version: 23
28+
java-version: 25
2929
distribution: temurin
3030

3131
- name: Check PGP version

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ permissions:
1616

1717
jobs:
1818
build:
19+
name: Build
1920
runs-on: ubuntu-latest
2021
steps:
2122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2223
with:
2324
submodules: true
2425

2526
- name: JDK
26-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2728
with:
28-
java-version: 23
29+
java-version: 25
2930
distribution: 'temurin'
3031

3132
- name: Collect project version
@@ -43,7 +44,7 @@ jobs:
4344
run: mvn --batch-mode --strict-checksums --errors clean verify site
4445

4546
- name: Upload test logs
46-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4748
if: always()
4849
with:
4950
name: test-logs

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ permissions:
1616

1717
jobs:
1818
build:
19+
name: Build
1920
runs-on: ubuntu-latest
2021
steps:
2122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2223
with:
2324
submodules: true
2425

2526
- name: JDK
26-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2728
with:
28-
java-version: 23
29+
java-version: 25
2930
distribution: 'temurin'
3031

3132
- name: Collect project version
@@ -43,14 +44,14 @@ jobs:
4344
run: mvn --batch-mode --strict-checksums --errors clean verify site
4445

4546
- name: Upload test logs
46-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4748
if: always()
4849
with:
4950
name: test-logs
5051
path: ./com.io7m.dixmont.tests/target/surefire-reports
5152

5253
- name: Coverage
53-
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
54+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
5455
with:
5556
token: ${{ secrets.CODECOV_TOKEN }}
5657
files: com.io7m.dixmont.tests/target/site/jacoco-aggregate/jacoco.xml

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ permissions:
1616

1717
jobs:
1818
build:
19+
name: Build
1920
runs-on: windows-latest
2021
steps:
2122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2223
with:
2324
submodules: true
2425

2526
- name: JDK
26-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2728
with:
28-
java-version: 23
29+
java-version: 25
2930
distribution: 'temurin'
3031

3132
- name: Collect project version
@@ -43,7 +44,7 @@ jobs:
4344
run: mvn --batch-mode --strict-checksums --errors clean verify site
4445

4546
- name: Upload test logs
46-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4748
if: always()
4849
with:
4950
name: test-logs

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ permissions:
1616

1717
jobs:
1818
build:
19+
name: Build
1920
runs-on: windows-latest
2021
steps:
2122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2223
with:
2324
submodules: true
2425

2526
- name: JDK
26-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2728
with:
28-
java-version: 23
29+
java-version: 25
2930
distribution: 'temurin'
3031

3132
- name: Collect project version
@@ -43,7 +44,7 @@ jobs:
4344
run: mvn --batch-mode --strict-checksums --errors clean verify site
4445

4546
- name: Upload test logs
46-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4748
if: always()
4849
with:
4950
name: test-logs

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ permissions:
1616

1717
jobs:
1818
build:
19+
name: Build
1920
runs-on: ubuntu-latest
2021
steps:
2122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2223
with:
2324
submodules: true
2425

2526
- name: JDK
26-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2728
with:
28-
java-version: 23
29+
java-version: 25
2930
distribution: 'temurin'
3031

3132
- name: Collect project version
@@ -43,7 +44,7 @@ jobs:
4344
run: mvn --batch-mode --strict-checksums --errors clean verify site
4445

4546
- name: Upload test logs
46-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4748
if: always()
4849
with:
4950
name: test-logs

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ permissions:
1616

1717
jobs:
1818
build:
19+
name: Build
1920
runs-on: ubuntu-latest
2021
steps:
2122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2223
with:
2324
submodules: true
2425

2526
- name: JDK
26-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2728
with:
28-
java-version: 23
29+
java-version: 25
2930
distribution: 'temurin'
3031

3132
- name: Collect project version
@@ -43,7 +44,7 @@ jobs:
4344
run: mvn --batch-mode --strict-checksums --errors clean verify site
4445

4546
- name: Upload test logs
46-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4748
if: always()
4849
with:
4950
name: test-logs

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ permissions:
1616

1717
jobs:
1818
build:
19+
name: Build
1920
runs-on: windows-latest
2021
steps:
2122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2223
with:
2324
submodules: true
2425

2526
- name: JDK
26-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2728
with:
28-
java-version: 23
29+
java-version: 25
2930
distribution: 'temurin'
3031

3132
- name: Collect project version
@@ -43,7 +44,7 @@ jobs:
4344
run: mvn --batch-mode --strict-checksums --errors clean verify site
4445

4546
- name: Upload test logs
46-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4748
if: always()
4849
with:
4950
name: test-logs

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,17 @@ permissions:
1616

1717
jobs:
1818
build:
19+
name: Build
1920
runs-on: windows-latest
2021
steps:
2122
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2223
with:
2324
submodules: true
2425

2526
- name: JDK
26-
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2728
with:
28-
java-version: 23
29+
java-version: 25
2930
distribution: 'temurin'
3031

3132
- name: Collect project version
@@ -43,7 +44,7 @@ jobs:
4344
run: mvn --batch-mode --strict-checksums --errors clean verify site
4445

4546
- name: Upload test logs
46-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4748
if: always()
4849
with:
4950
name: test-logs

0 commit comments

Comments
 (0)