Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.

Commit 1ddba2d

Browse files
committed
Update workflows.
1 parent 947b01a commit 1ddba2d

11 files changed

+95
-70
lines changed

.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.renderdoc_jffm-* ]
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: 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: 11 additions & 7 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@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: 23
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -34,24 +38,24 @@ jobs:
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

3640
- name: Configure Vulkan
37-
uses: NcStudios/VulkanCI@v1.1
41+
uses: NcStudios/VulkanCI@1a5db3ebde578c503b1d7f8df007e42a7367224c
3842
with:
39-
sdkVersion: 1.3.283.0
43+
sdkVersion: 1.4.309.0
4044

4145
- name: Build
4246
env:
4347
XOANON_REALLY_USE_LOCAL_DISPLAY: true
4448
run: ./.github/workflows/run-with-xvfb.sh mvn --batch-mode --strict-checksums --errors clean verify site
4549

4650
- name: Upload video
47-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4852
if: ${{ always() }}
4953
with:
5054
name: test-video
5155
path: test-suite.webm
5256

5357
- name: Upload test logs
54-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
5559
if: always()
5660
with:
5761
name: test-logs

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

Lines changed: 13 additions & 9 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@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: 23
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -34,37 +38,37 @@ jobs:
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

3640
- name: Configure Vulkan
37-
uses: NcStudios/VulkanCI@v1.1
41+
uses: NcStudios/VulkanCI@1a5db3ebde578c503b1d7f8df007e42a7367224c
3842
with:
39-
sdkVersion: 1.3.283.0
43+
sdkVersion: 1.4.309.0
4044

4145
- name: Build
4246
env:
4347
XOANON_REALLY_USE_LOCAL_DISPLAY: true
4448
run: ./.github/workflows/run-with-xvfb.sh mvn --batch-mode --strict-checksums --errors clean verify site
4549

4650
- name: Upload video
47-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4852
if: ${{ always() }}
4953
with:
5054
name: test-video
5155
path: test-suite.webm
5256

5357
- name: Upload test logs
54-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
5559
if: always()
5660
with:
5761
name: test-logs
5862
path: ./com.io7m.renderdoc_jffm.tests/target/surefire-reports
5963

6064
- name: Coverage
61-
uses: codecov/codecov-action@v5.4.0
65+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
6266
with:
6367
token: ${{ secrets.CODECOV_TOKEN }}
6468
files: com.io7m.renderdoc_jffm.tests/target/site/jacoco-aggregate/jacoco.xml
6569

6670
- name: Log in to Quay.io.
67-
uses: redhat-actions/podman-login@v1.7
71+
uses: redhat-actions/podman-login@4934294ad0449894bcd1e9f191899d7292469603
6872
with:
6973
username: ${{ secrets.QUAY_IO_USERNAME }}
7074
password: ${{ secrets.QUAY_IO_PASSWORD }}

.github/workflows/main.windows.temurin.current.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: 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: 23
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -34,17 +38,17 @@ jobs:
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

3640
- name: Configure Vulkan
37-
uses: NcStudios/VulkanCI@v1.1
41+
uses: NcStudios/VulkanCI@1a5db3ebde578c503b1d7f8df007e42a7367224c
3842
with:
39-
sdkVersion: 1.3.283.0
43+
sdkVersion: 1.4.309.0
4044

4145
- name: Build
4246
env:
4347
XOANON_REALLY_USE_LOCAL_DISPLAY: true
4448
run: mvn --batch-mode --strict-checksums --errors clean verify site
4549

4650
- name: Upload test logs
47-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4852
if: always()
4953
with:
5054
name: test-logs

.github/workflows/main.windows.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: 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: 23
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -34,17 +38,17 @@ jobs:
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

3640
- name: Configure Vulkan
37-
uses: NcStudios/VulkanCI@v1.1
41+
uses: NcStudios/VulkanCI@1a5db3ebde578c503b1d7f8df007e42a7367224c
3842
with:
39-
sdkVersion: 1.3.283.0
43+
sdkVersion: 1.4.309.0
4044

4145
- name: Build
4246
env:
4347
XOANON_REALLY_USE_LOCAL_DISPLAY: true
4448
run: mvn --batch-mode --strict-checksums --errors clean verify site
4549

4650
- name: Upload test logs
47-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4852
if: always()
4953
with:
5054
name: test-logs

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

Lines changed: 11 additions & 7 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@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: 23
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -34,24 +38,24 @@ jobs:
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

3640
- name: Configure Vulkan
37-
uses: NcStudios/VulkanCI@v1.1
41+
uses: NcStudios/VulkanCI@1a5db3ebde578c503b1d7f8df007e42a7367224c
3842
with:
39-
sdkVersion: 1.3.283.0
43+
sdkVersion: 1.4.309.0
4044

4145
- name: Build
4246
env:
4347
XOANON_REALLY_USE_LOCAL_DISPLAY: true
4448
run: ./.github/workflows/run-with-xvfb.sh mvn --batch-mode --strict-checksums --errors clean verify site
4549

4650
- name: Upload video
47-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4852
if: ${{ always() }}
4953
with:
5054
name: test-video
5155
path: test-suite.webm
5256

5357
- name: Upload test logs
54-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
5559
if: always()
5660
with:
5761
name: test-logs

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

Lines changed: 11 additions & 7 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@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: 23
29+
java-version: 25
2630
distribution: 'temurin'
2731

2832
- name: Collect project version
@@ -34,24 +38,24 @@ jobs:
3438
run: java .github/workflows/Tools.java ShowProjectIsSnapshot pom.xml >> "$GITHUB_OUTPUT"
3539

3640
- name: Configure Vulkan
37-
uses: NcStudios/VulkanCI@v1.1
41+
uses: NcStudios/VulkanCI@1a5db3ebde578c503b1d7f8df007e42a7367224c
3842
with:
39-
sdkVersion: 1.3.283.0
43+
sdkVersion: 1.4.309.0
4044

4145
- name: Build
4246
env:
4347
XOANON_REALLY_USE_LOCAL_DISPLAY: true
4448
run: ./.github/workflows/run-with-xvfb.sh mvn --batch-mode --strict-checksums --errors clean verify site
4549

4650
- name: Upload video
47-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
4852
if: ${{ always() }}
4953
with:
5054
name: test-video
5155
path: test-suite.webm
5256

5357
- name: Upload test logs
54-
uses: actions/upload-artifact@v4
58+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
5559
if: always()
5660
with:
5761
name: test-logs

0 commit comments

Comments
 (0)