From 380595062f0fb3057795e477761648737bc6b476 Mon Sep 17 00:00:00 2001 From: Ziv Yaniv Date: Thu, 1 Feb 2024 09:51:03 -0500 Subject: [PATCH] Updated github actions. Updated to the newer versions of github actions which use Node.js 20. See instructions for action users: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4bd9e90..7672905 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -23,9 +23,9 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 - name: Install and run black for notebooks @@ -41,8 +41,8 @@ jobs: inputs: ["00_ or 01_ or 02_ or 03_ or 04_ or 05_", "06_ or 07_ or 08_ or 09_ or 10_"] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - - uses: actions/cache@v3 + - uses: actions/checkout@v4 + - uses: actions/cache@v4 id: cache with: path: | @@ -51,7 +51,7 @@ jobs: restore-keys: | notebook-data-${{ hashFiles('data/manifest.json') }} - name: Set up Python 3.9 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.9 - name: Install enchant on non windows systems