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
9 changes: 9 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,14 @@
"matchPackageNames": ["org.apache.spark:spark-sql_2.12"],
"enabled": false
}
],
"regexManagers": [
{
"description": "Update USE_BAZEL_VERSION in GitHub Actions",
"fileMatch": ["^\\.github/workflows/.*\\.yml$"],
"matchStrings": ["USE_BAZEL_VERSION: \"(?<currentValue>.*?)\""],
"datasourceTemplate": "github-releases",
"depNameTemplate": "bazelbuild/bazel"
}
]
}
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
java_version: [21]
env:
JAVA_VERSION: ${{ matrix.java_version }}
USE_BAZEL_VERSION: "8.5.1"
steps:
- uses: actions/checkout@v6
- name: Set up JDK ${{ matrix.java_version }}
Expand Down Expand Up @@ -177,6 +178,7 @@ jobs:

env:
JAVA_VERSION: ${{ matrix.java.version }}
USE_BAZEL_VERSION: "8.5.1"
continue-on-error: ${{ matrix.java.experimental }}
steps:
- name: Check out sources
Expand Down
2 changes: 2 additions & 0 deletions docs/examples/BazelExample/BUILD
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
load("@rules_java//java:defs.bzl", "java_binary", "java_plugin")

java_binary(
name = "example",
srcs = ["BazelExample.java"],
Expand Down
1 change: 1 addition & 0 deletions docs/examples/BazelExample/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
bazel_dep(name = "rules_java", version = "8.6.1")
bazel_dep(name = "rules_jvm_external", version = "6.6")
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
Expand Down