1 parent 06c100a commit cb07998Copy full SHA for cb07998
1 file changed
.github/workflows/copilot-setup-steps.yml
@@ -1,3 +1,9 @@
1
+# This workflow runs the setup steps that the GitHub Copilot coding agent
2
+# needs before it can start MCP servers.
3
+#
4
+# It downloads and installs the jdtls-mcp server to a stable cache location
5
+# (~/.cache/jdtls-mcp/current/) so that the MCP configuration can reference
6
+# a fixed path without needing to download anything at MCP startup time.
7
on:
8
workflow_dispatch:
9
@@ -9,6 +15,12 @@ jobs:
15
runs-on: ubuntu-latest
10
16
11
17
steps:
18
+ - name: Set up Java 21
19
+ uses: actions/setup-java@v4
20
+ with:
21
+ distribution: temurin
22
+ java-version: '21'
23
+
12
24
- name: Install jdtls-mcp
13
25
run: |
14
26
bash <(curl -fsSL https://raw.githubusercontent.com/sunix/jdtls-mcp/main/scripts/install.sh)
0 commit comments