summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/daily.yml2
-rw-r--r--.github/workflows/spell-check.yml11
2 files changed, 10 insertions, 3 deletions
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
index 5cc7fbd22..88e31f52a 100644
--- a/.github/workflows/daily.yml
+++ b/.github/workflows/daily.yml
@@ -521,7 +521,7 @@ jobs:
repository: ${{ env.GITHUB_REPOSITORY }}
ref: ${{ env.GITHUB_HEAD_REF }}
- name: test
- uses: vmactions/freebsd-vm@v0.1.4
+ uses: vmactions/freebsd-vm@v0.1.5
with:
usesh: true
sync: rsync
diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml
index 7aaa9ffa8..ac9cf2532 100644
--- a/.github/workflows/spell-check.yml
+++ b/.github/workflows/spell-check.yml
@@ -18,8 +18,15 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2
+ - name: pip cache
+ uses: actions/cache@v2
+ with:
+ path: ~/.cache/pip
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
+ restore-keys: ${{ runner.os }}-pip-
+
- name: Install prerequisites
- run: sudo pip install codespell==2.0.0
+ run: sudo pip install -r ./.codespell/requirements.txt
- name: Spell check
- run: codespell --config=./.github/.codespellrc
+ run: codespell --config=./.codespell/.codespellrc