Skip to content

Commit

Permalink
Merge pull request #3237 from purificant/ci
Browse files Browse the repository at this point in the history
ci: bump action versions
  • Loading branch information
stevenbird committed Apr 5, 2024
2 parents f2a92bd + b732562 commit 8c233dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cffconvert.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out a copy of the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check whether the citation metadata from CITATION.cff is valid
uses: citation-file-format/cffconvert-github-action@2.0.0
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: actions/checkout@v4

- name: Cache nltk data
uses: actions/cache@v3
uses: actions/cache@v4
id: restore-cache
with:
path: ~/nltk_data
Expand All @@ -63,7 +63,7 @@ jobs:
uses: actions/checkout@v4

- name: Cache third party tools
uses: actions/cache@v3
uses: actions/cache@v4
id: restore-cache
with:
path: ~/third
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Restore cached dependencies
uses: actions/cache@v3
uses: actions/cache@v4
id: restore-cache
with:
path: ${{ env.pythonLocation }}
Expand All @@ -107,13 +107,13 @@ jobs:
#if: steps.restore-cache.outputs.cache-hit != 'true' # disabled due to a persistent issue with restoring cache on macos runner

- name: Use cached nltk data
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/nltk_data
key: nltk_data_${{ secrets.CACHE_VERSION }}

- name: Use cached third party tools
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/third
key: third_${{ hashFiles('tools/github_actions/third-party.sh') }}_${{ secrets.CACHE_VERSION }}
Expand Down

0 comments on commit 8c233dc

Please sign in to comment.