This is an automated email from the ASF dual-hosted git repository.
jinrongtong pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/rocketmq-a2a.git
The following commit(s) were added to refs/heads/main by this push:
new 91d23f5 Fix CI workflow execution failures.
91d23f5 is described below
commit 91d23f524b96ac89520062a89e56fdd1342991e5
Author: RongtongJin <[email protected]>
AuthorDate: Fri Dec 26 17:47:31 2025 +0800
Fix CI workflow execution failures.
---
.github/workflows/maven.yaml | 2 +-
.github/workflows/misspell_check.yml | 8 +++++---
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 50131a8..369d57c 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -14,7 +14,7 @@ jobs:
matrix:
# see
https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
os: [ubuntu-latest]
- jdk: [8]
+ jdk: [17]
steps:
- name: Checkout
uses: actions/checkout@v4
diff --git a/.github/workflows/misspell_check.yml
b/.github/workflows/misspell_check.yml
index e71d49a..1cff151 100644
--- a/.github/workflows/misspell_check.yml
+++ b/.github/workflows/misspell_check.yml
@@ -11,7 +11,9 @@ jobs:
- uses: actions/checkout@v4
- name: Install misspell
run: |
- curl -L -o ./install-misspell.sh
https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh
- sh ./install-misspell.sh
+ curl -L
https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh |
sh
+ - name: Add misspell to PATH
+ run: |
+ echo "$(pwd)/bin" >> $GITHUB_PATH
- name: Run misspell
- run: find . -type f -print0 | xargs -0 $HOME/bin/misspell -error -i
transfered,derivate
+ run: find . -type f -print0 | xargs -0 misspell -error -i
transfered,derivate