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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
java-version: '21'

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

# The default `check`/`test` gate excludes @Tag("benchmark") and @Tag("load") suites
# (see BaseConventionPlugin) so it stays fast and deterministic.
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
java-version: '21'

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

# Runs only @Tag("benchmark") suites across all modules. Informational signal for
# regressions; replaced by a proper JMH harness in Phase 4 (see TESTING_STRATEGY.md).
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
distribution: temurin
java-version: "21"

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

# Pin the generated projects (and the header version) to the released Katalyst version, so the
# live generator tracks whatever tag was cut. On a release it is the release tag; otherwise the
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
java-version: "21"

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

# Compiles the plugin and assembles the distributable ZIP; fails the check on any error.
- name: Build plugin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
java-version: '21'

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

- name: Publish
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
java-version: "21"

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

# Build + test first so a compile/test/packaging failure is caught before we touch the Marketplace.
- name: Build & test plugin
Expand Down
Loading