From b7325622be8b8bc14f76241ea07e8655a5c9333d Mon Sep 17 00:00:00 2001 From: purificant Date: Mon, 11 Mar 2024 13:59:45 +0000 Subject: [PATCH] ci: bump action versions --- .github/workflows/cffconvert.yml | 2 +- .github/workflows/ci.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cffconvert.yml b/.github/workflows/cffconvert.yml index ca33cea86c..6e035eb2a9 100644 --- a/.github/workflows/cffconvert.yml +++ b/.github/workflows/cffconvert.yml @@ -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 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8428250e58..1a86635805 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 @@ -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 @@ -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 }} @@ -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 }}