From 90be0e4a80a9a710a24ee99424779c95ad68f0cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=9B=E8=82=AF=E6=99=AE=E9=80=9A?= Date: Fri, 5 Dec 2025 10:31:50 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=95=9C=E5=83=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 09af2b5..5331859 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ clone: steps: # 自动检测是否存在 Java (pom.xml) - name: java-build - image: maven:3.8-eclipse-temurin-17 + image: maven:3.9-eclipse-temurin commands: - if [ -f pom.xml ]; then mvn clean compile; fi when: @@ -17,7 +17,7 @@ steps: # 自动检测是否存在 Python (requirements.txt) - name: python-test - image: python:3.9-slim + image: python:3.12.0-slim commands: - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - if [ -f test_example.py ]; then python -m pytest test_example.py -v; fi