Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
java-version: ${{ matrix.java }}

- name: Set up Gradle
uses: gradle/actions/setup-gradle@v4
uses: gradle/actions/setup-gradle@v6

# `build` runs, in one command: compilation on the Java 25 baseline, the
# tests, the JaCoCo floor on core (R-T16), the ArchUnit module rules
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
with:
distribution: temurin
java-version: '25'
- uses: gradle/actions/setup-gradle@v4
- uses: gradle/actions/setup-gradle@v6

# R-DOC6: an example that does not run is documentation of something that
# used to work.
Expand All @@ -83,7 +83,7 @@ jobs:
with:
distribution: temurin
java-version: '25'
- uses: gradle/actions/setup-gradle@v4
- uses: gradle/actions/setup-gradle@v6

# The unit tests drive the command objects in-process, which is right for
# covering edge cases and cannot catch the things that only go wrong once
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
with:
distribution: temurin
java-version: '25'
- uses: gradle/actions/setup-gradle@v4
- uses: gradle/actions/setup-gradle@v6

# R-P2. The constrained heap is the assertion: a 1 GB file is roughly nine
# million records, and anything on the read path retaining per-record
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
with:
distribution: temurin
java-version: '25'
- uses: gradle/actions/setup-gradle@v4
- uses: gradle/actions/setup-gradle@v6

# R-0.1, risk R2: the descriptor loader refuses `verified: true` below two
# cited sources, and this task exercises every bundled descriptor through
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
distribution: temurin
java-version: '25'

- uses: gradle/actions/setup-gradle@v4
- uses: gradle/actions/setup-gradle@v6

# A fuzzer that starts from nothing every night re-derives the same
# shallow inputs every night. Restoring the corpus is what lets each run
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
distribution: temurin
java-version: '25'

- uses: gradle/actions/setup-gradle@v4
- uses: gradle/actions/setup-gradle@v6

# The full gate, on the release artefacts themselves. A release that
# skipped the checks would be a release nobody had checked.
Expand Down
Loading