Skip to content

Commit 45da34a

Browse files
committed
Release: com.io7m.seltzer 1.3.0
Change: Allow for omitting colons from SSLogging messages. (Ticket: #51) 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 jqwik.version:1.9.2 → 1.9.3. Change: Update org.junit:junit-bom:5.13.0 → 5.13.4. Change: Update org.junit:junit-bom:5.12.2 → 5.13.0.
2 parents 7e9adbf + c80c95e commit 45da34a

File tree

27 files changed

+384
-123
lines changed

27 files changed

+384
-123
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-release.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,7 @@ fi
4545
4646
<servers>
4747
<server>
48-
<id>sonatype-nexus-snapshots</id>
49-
<username>${MAVEN_CENTRAL_USERNAME}</username>
50-
<password>${MAVEN_CENTRAL_PASSWORD}</password>
51-
</server>
52-
<server>
53-
<id>sonatype-nexus-staging</id>
48+
<id>central</id>
5449
<username>${MAVEN_CENTRAL_USERNAME}</username>
5550
<password>${MAVEN_CENTRAL_PASSWORD}</password>
5651
</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: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,21 @@ on:
1111
push:
1212
tags: [ com.io7m.seltzer-* ]
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@8e8c483db84b4bee98b60c0593521ed34d9990e8
1922
with:
2023
submodules: true
2124

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

2831
- name: Check PGP version
@@ -34,7 +37,7 @@ jobs:
3437
run: echo "${PGP_SIGNING_KEY}" | gpg -v --import
3538

3639
- name: Log in to Quay.io.
37-
uses: redhat-actions/podman-login@v1.7
40+
uses: redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603
3841
with:
3942
username: ${{ secrets.QUAY_IO_USERNAME }}
4043
password: ${{ secrets.QUAY_IO_PASSWORD }}

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,22 @@ on:
1111
push:
1212
branches: [ master, main, develop, feature/*, release/* ]
1313

14+
permissions:
15+
contents: read
16+
1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
1923
with:
2024
submodules: true
2125

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

2832
- name: Collect project version
@@ -40,7 +44,7 @@ jobs:
4044
run: mvn --batch-mode --strict-checksums --errors clean verify site
4145

4246
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4448
if: always()
4549
with:
4650
name: test-logs

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

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,22 @@ on:
1111
push:
1212
branches: [ master, main, develop, feature/*, release/* ]
1313

14+
permissions:
15+
contents: read
16+
1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
1923
with:
2024
submodules: true
2125

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

2832
- name: Collect project version
@@ -40,20 +44,20 @@ jobs:
4044
run: mvn --batch-mode --strict-checksums --errors clean verify site
4145

4246
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4448
if: always()
4549
with:
4650
name: test-logs
4751
path: ./com.io7m.seltzer.tests/target/surefire-reports
4852

4953
- name: Coverage
50-
uses: codecov/codecov-action@v5.4.2
54+
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de
5155
with:
5256
token: ${{ secrets.CODECOV_TOKEN }}
5357
files: com.io7m.seltzer.tests/target/site/jacoco-aggregate/jacoco.xml
5458

5559
- name: Log in to Quay.io.
56-
uses: redhat-actions/podman-login@v1.7
60+
uses: redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603
5761
with:
5862
username: ${{ secrets.QUAY_IO_USERNAME }}
5963
password: ${{ secrets.QUAY_IO_PASSWORD }}

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,22 @@ on:
1111
push:
1212
branches: [ master, main, develop, feature/*, release/* ]
1313

14+
permissions:
15+
contents: read
16+
1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: windows-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
1923
with:
2024
submodules: true
2125

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

2832
- name: Collect project version
@@ -40,7 +44,7 @@ jobs:
4044
run: mvn --batch-mode --strict-checksums --errors clean verify site
4145

4246
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4448
if: always()
4549
with:
4650
name: test-logs

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,22 @@ on:
1111
push:
1212
branches: [ master, main, develop, feature/*, release/* ]
1313

14+
permissions:
15+
contents: read
16+
1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: windows-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
1923
with:
2024
submodules: true
2125

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

2832
- name: Collect project version
@@ -40,7 +44,7 @@ jobs:
4044
run: mvn --batch-mode --strict-checksums --errors clean verify site
4145

4246
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4448
if: always()
4549
with:
4650
name: test-logs

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,22 @@ on:
1111
pull_request:
1212
branches: [ master, main, develop, feature/*, release/* ]
1313

14+
permissions:
15+
contents: read
16+
1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
1923
with:
2024
submodules: true
2125

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

2832
- name: Collect project version
@@ -40,7 +44,7 @@ jobs:
4044
run: mvn --batch-mode --strict-checksums --errors clean verify site
4145

4246
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4448
if: always()
4549
with:
4650
name: test-logs

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,22 @@ on:
1111
pull_request:
1212
branches: [ master, main, develop, feature/*, release/* ]
1313

14+
permissions:
15+
contents: read
16+
1417
jobs:
1518
build:
19+
name: Build
1620
runs-on: ubuntu-latest
1721
steps:
18-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
1923
with:
2024
submodules: true
2125

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

2832
- name: Collect project version
@@ -40,7 +44,7 @@ jobs:
4044
run: mvn --batch-mode --strict-checksums --errors clean verify site
4145

4246
- name: Upload test logs
43-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
4448
if: always()
4549
with:
4650
name: test-logs

0 commit comments

Comments
 (0)