Skip to content

Commit

Permalink
Updated github actions.
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
zivy committed Feb 1, 2024
1 parent aa9f217 commit 3805950
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand All @@ -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
Expand Down

0 comments on commit 3805950

Please sign in to comment.