Skip to content

Commit 4d15421

Browse files
committed
Release: com.io7m.jsamplebuffer 1.0.1
Change: Update ch.qos.logback:logback-classic:1.5.20 → 1.5.21. Change: Update ch.qos.logback:logback-classic:1.5.19 → 1.5.20. Change: Update org.immutables:value:2.11.4 → 2.11.6. Change: Update actions/upload-artifact:4.6.2 → 5.0.0. Change: Update org.junit:junit-bom:5.14.0 → 5.14.1. Change: Update org.junit:junit-bom:5.13.4 → 5.14.0. Change: Update org.immutables:value:2.11.3 → 2.11.4. Change: Update ch.qos.logback:logback-classic:1.5.18 → 1.5.19. Change: Update org.mockito:mockito-core:5.19.0 → 5.20.0. Change: Update org.immutables:value:2.11.1 → 2.11.3. Change: Update org.mockito:mockito-core:5.18.0 → 5.19.0. Change: Update org.junit:junit-bom:5.13.0 → 5.13.4. Change: Update org.immutables:value:2.10.1 → 2.11.1. Change: Update org.junit:junit-bom:5.12.2 → 5.13.0. Change: Update org.mockito:mockito-core:5.17.0 → 5.18.0. Change: Update org.junit:junit-bom:5.12.1 → 5.12.2. Change: Update org.mockito:mockito-core:5.16.1 → 5.17.0. Change: Update ch.qos.logback:logback-classic:1.5.16 → 1.5.18. Change: Update org.mockito:mockito-core:5.15.2 → 5.16.1. Change: Update org.junit:junit-bom:5.11.4 → 5.12.1. Change: Update ch.qos.logback:logback-classic:1.5.15 → 1.5.16. Change: Update org.mockito:mockito-core:5.14.2 → 5.15.2. Change: Update ch.qos.logback:logback-classic:1.5.14 → 1.5.15. Change: Update ch.qos.logback:logback-classic:1.5.13 → 1.5.14. Change: Update ch.qos.logback:logback-classic:1.5.12 → 1.5.13. Change: Update org.junit:junit-bom:5.11.3 → 5.11.4. Change: Update ch.qos.logback:logback-classic:1.5.11 → 1.5.12. Change: Update org.junit:junit-bom:5.11.2 → 5.11.3. Change: Update ch.qos.logback:logback-classic:1.5.10 → 1.5.11. Change: Update org.mockito:mockito-core:5.14.1 → 5.14.2. Change: Update ch.qos.logback:logback-classic:1.5.9 → 1.5.10. Change: Update ch.qos.logback:logback-classic:1.5.8 → 1.5.9. Change: Update org.junit:junit-bom:5.11.1 → 5.11.2. Change: Update org.mockito:mockito-core:5.14.0 → 5.14.1. Change: Update org.mockito:mockito-core:5.13.0 → 5.14.0. Change: Update org.junit:junit-bom:5.11.0 → 5.11.1. Change: Update com.io7m.junsigned:com.io7m.junsigned.core:3.0.0 → 4.0.0. Change: Update ch.qos.logback:logback-classic:1.5.7 → 1.5.8. Change: Update org.mockito:mockito-core:5.12.0 → 5.13.0. Change: Update ch.qos.logback:logback-classic:1.5.6 → 1.5.7. Change: Update org.junit:junit-bom:5.10.3 → 5.11.0. Change: Update org.junit:junit-bom:5.10.2 → 5.10.3.
2 parents 7273cb0 + 3cd0a28 commit 4d15421

32 files changed

+1302
-619
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ updates:
55
- package-ecosystem: "github-actions"
66
directory: "/"
77
schedule:
8-
interval: "daily"
8+
interval: "monthly"
9+
cooldown:
10+
default-days: 21
911

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

1519
target-branch: "develop"
1620
ignore:

.github/workflows/deploy-release.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ fi
2727
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2828
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
2929
30+
<!-- Enable deployment of OCI images. -->
31+
<activeProfiles>
32+
<activeProfile>io7m-oci-image</activeProfile>
33+
</activeProfiles>
34+
3035
<profiles>
3136
<profile>
3237
<id>io7m</id>
@@ -40,12 +45,7 @@ fi
4045
4146
<servers>
4247
<server>
43-
<id>sonatype-nexus-snapshots</id>
44-
<username>${MAVEN_CENTRAL_USERNAME}</username>
45-
<password>${MAVEN_CENTRAL_PASSWORD}</password>
46-
</server>
47-
<server>
48-
<id>sonatype-nexus-staging</id>
48+
<id>central</id>
4949
<username>${MAVEN_CENTRAL_USERNAME}</username>
5050
<password>${MAVEN_CENTRAL_PASSWORD}</password>
5151
</server>

.github/workflows/deploy-snapshot.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@ fi
3434
3535
<servers>
3636
<server>
37-
<id>sonatype-nexus-snapshots</id>
38-
<username>${MAVEN_CENTRAL_USERNAME}</username>
39-
<password>${MAVEN_CENTRAL_PASSWORD}</password>
40-
</server>
41-
<server>
42-
<id>sonatype-nexus-staging</id>
37+
<id>central</id>
4338
<username>${MAVEN_CENTRAL_USERNAME}</username>
4439
<password>${MAVEN_CENTRAL_PASSWORD}</password>
4540
</server>

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

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,33 @@ on:
1111
push:
1212
tags: [ com.io7m.jsamplebuffer-* ]
1313

14+
permissions:
15+
contents: read
16+
1417
jobs:
1518
build:
1619
runs-on: ubuntu-latest
1720
steps:
18-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1922
with:
2023
submodules: true
2124

2225
- name: JDK
23-
uses: actions/setup-java@v4
26+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2427
with:
25-
java-version: 21
28+
java-version: 25
2629
distribution: temurin
2730

31+
- name: Check PGP version
32+
run: gpg --version
33+
2834
- name: Import signing key
2935
env:
3036
PGP_SIGNING_KEY: ${{ secrets.PGP_SIGNING_KEY }}
31-
run: echo "${PGP_SIGNING_KEY}" | gpg --import
37+
run: echo "${PGP_SIGNING_KEY}" | gpg -v --import
3238

3339
- name: Log in to Quay.io.
34-
uses: redhat-actions/podman-login@v1.7
40+
uses: redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603
3541
with:
3642
username: ${{ secrets.QUAY_IO_USERNAME }}
3743
password: ${{ secrets.QUAY_IO_PASSWORD }}

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

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@ name: main.linux.temurin.current
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
1316

1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1923
with:
2024
submodules: true
2125

2226
- name: JDK
23-
uses: actions/setup-java@v4
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2428
with:
25-
java-version: 22
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -33,11 +37,14 @@ jobs:
3337
id: project_is_snapshot
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

40+
3641
- name: Build
42+
env:
43+
XOANON_REALLY_USE_LOCAL_DISPLAY: true
3744
run: mvn --batch-mode --strict-checksums --errors clean verify site
3845

3946
- name: Upload test logs
40-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4148
if: always()
4249
with:
4350
name: test-logs

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

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@ name: main.linux.temurin.lts
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
1316

1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1923
with:
2024
submodules: true
2125

2226
- name: JDK
23-
uses: actions/setup-java@v4
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2428
with:
25-
java-version: 21
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -33,24 +37,27 @@ jobs:
3337
id: project_is_snapshot
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

40+
3641
- name: Build
42+
env:
43+
XOANON_REALLY_USE_LOCAL_DISPLAY: true
3744
run: mvn --batch-mode --strict-checksums --errors clean verify site
3845

3946
- name: Upload test logs
40-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4148
if: always()
4249
with:
4350
name: test-logs
4451
path: ./com.io7m.jsamplebuffer.tests/target/surefire-reports
4552

4653
- name: Coverage
47-
uses: codecov/codecov-action@v4.4.0
54+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
4855
with:
4956
token: ${{ secrets.CODECOV_TOKEN }}
50-
file: com.io7m.jsamplebuffer.tests/target/site/jacoco-aggregate/jacoco.xml
57+
files: com.io7m.jsamplebuffer.tests/target/site/jacoco-aggregate/jacoco.xml
5158

5259
- name: Log in to Quay.io.
53-
uses: redhat-actions/podman-login@v1.7
60+
uses: redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603
5461
with:
5562
username: ${{ secrets.QUAY_IO_USERNAME }}
5663
password: ${{ secrets.QUAY_IO_PASSWORD }}

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

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@ name: main.windows.temurin.current
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
1316

1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: windows-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1923
with:
2024
submodules: true
2125

2226
- name: JDK
23-
uses: actions/setup-java@v4
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2428
with:
25-
java-version: 22
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -33,11 +37,14 @@ jobs:
3337
id: project_is_snapshot
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

40+
3641
- name: Build
42+
env:
43+
XOANON_REALLY_USE_LOCAL_DISPLAY: true
3744
run: mvn --batch-mode --strict-checksums --errors clean verify site
3845

3946
- name: Upload test logs
40-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4148
if: always()
4249
with:
4350
name: test-logs

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

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@ name: main.windows.temurin.lts
99

1010
on:
1111
push:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
1316

1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: windows-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1923
with:
2024
submodules: true
2125

2226
- name: JDK
23-
uses: actions/setup-java@v4
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2428
with:
25-
java-version: 21
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -33,11 +37,14 @@ jobs:
3337
id: project_is_snapshot
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

40+
3641
- name: Build
42+
env:
43+
XOANON_REALLY_USE_LOCAL_DISPLAY: true
3744
run: mvn --batch-mode --strict-checksums --errors clean verify site
3845

3946
- name: Upload test logs
40-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4148
if: always()
4249
with:
4350
name: test-logs

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

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@ name: pr.linux.temurin.current
99

1010
on:
1111
pull_request:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
1316

1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1923
with:
2024
submodules: true
2125

2226
- name: JDK
23-
uses: actions/setup-java@v4
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2428
with:
25-
java-version: 22
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -33,11 +37,14 @@ jobs:
3337
id: project_is_snapshot
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

40+
3641
- name: Build
42+
env:
43+
XOANON_REALLY_USE_LOCAL_DISPLAY: true
3744
run: mvn --batch-mode --strict-checksums --errors clean verify site
3845

3946
- name: Upload test logs
40-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4148
if: always()
4249
with:
4350
name: test-logs

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

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@ name: pr.linux.temurin.lts
99

1010
on:
1111
pull_request:
12-
branches: [ develop, feature/*, release/* ]
12+
branches: [ master, main, develop, feature/*, release/* ]
13+
14+
permissions:
15+
contents: read
1316

1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
1923
with:
2024
submodules: true
2125

2226
- name: JDK
23-
uses: actions/setup-java@v4
27+
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165
2428
with:
25-
java-version: 21
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -33,11 +37,14 @@ jobs:
3337
id: project_is_snapshot
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

40+
3641
- name: Build
42+
env:
43+
XOANON_REALLY_USE_LOCAL_DISPLAY: true
3744
run: mvn --batch-mode --strict-checksums --errors clean verify site
3845

3946
- name: Upload test logs
40-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4148
if: always()
4249
with:
4350
name: test-logs

0 commit comments

Comments
 (0)