Skip to content

Commit

Permalink
Update deprecated action versions.
Browse files Browse the repository at this point in the history
Github has moved workers to a new node [1], so we need to update those
actions before the old node is decommissioned.

[1] https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/

Signed-off-by: Jason Guiditta <[email protected]>
  • Loading branch information
jguiditta committed Apr 26, 2024
1 parent a430a57 commit b4fb1f6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Setup System Dependencies
Expand All @@ -29,9 +29,9 @@ jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Setup System Dependencies
Expand Down

0 comments on commit b4fb1f6

Please sign in to comment.