Skip to content

Commit

Permalink
Use latest actions in GitHub Actions
Browse files Browse the repository at this point in the history
Fixes:

    Node.js 16 actions are deprecated. Please update the following
    actions to use Node.js 20: actions/checkout@v3,
    actions/setup-python@v3. For more information see:
    https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
  • Loading branch information
michael-k committed Mar 4, 2024
1 parent 65e3d97 commit a448bb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12.0-rc - 3.12"
- "3.12"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit a448bb6

Please sign in to comment.