Merge pull request #8106 from ieQu1/ci-validate-0.3.3

chore(ci): Bump emqx-schema-validate to 0.3.3
This commit is contained in:
Zaiming (Stone) Shi 2022-05-31 17:15:52 +01:00 committed by GitHub
commit 22d8e279ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -229,7 +229,7 @@ jobs:
- emqx
- emqx-enterprise
runs-on: aws-amd64
container: "ghcr.io/iequ1/emqx-schema-validate:0.3.1"
container: "ghcr.io/emqx/emqx-schema-validate:0.3.3"
steps:
- uses: actions/download-artifact@v2
name: Download schema dump

View File

@ -7,7 +7,7 @@ else
SCHEMA="$1"
fi
docker run -d --name langtool "ghcr.io/iequ1/emqx-schema-validate:0.3.2"
docker run -d --name langtool "ghcr.io/emqx/emqx-schema-validate:0.3.3"
docker exec -i langtool ./emqx_schema_validate - < "${SCHEMA}"
success="$?"
@ -16,6 +16,6 @@ docker kill langtool || true
docker rm langtool || true
echo "If this script finds a false positive (e.g. when it things that a protocol name is a typo),
make a PR here: https://github.com/ieQu1/emqx-schema-validate/blob/master/dict/en_spelling_additions.txt"
make a PR here: https://github.com/emqx/emqx-schema-validate/blob/master/dict/en_spelling_additions.txt"
exit "$success"