Skip to content

Commit 8b043b2

Browse files
committed
ci(vale): use our container by default
We have everything you need. Signed-off-by: Randolph Sapp <[email protected]>
1 parent bb63878 commit 8b043b2

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/vale.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,23 @@ name: "vale"
33

44
on: [pull_request]
55

6+
defaults:
7+
run:
8+
shell: bash
9+
610
jobs:
711
vale:
812
name: vale
913
runs-on: ubuntu-latest
14+
container:
15+
image: ghcr.io/staticrocket/processor-sdk-doc:latest
16+
options: --entrypoint /bin/bash
1017

1118
steps:
19+
- name: Prepare GitHub workdir
20+
run: |
21+
mkdir -p /github/home/
22+
1223
- name: Checkout repository
1324
uses: actions/checkout@v4
1425

@@ -20,9 +31,6 @@ jobs:
2031
**.rst
2132
**.md
2233
23-
- name: Install docutils
24-
run: sudo apt-get install -y docutils
25-
2634
- name: Run vale checks
2735
uses: errata-ai/[email protected]
2836
with:

0 commit comments

Comments
 (0)