Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
actions/checkout@v2 and actions/setup-python@v2 are both using
deprecated node versions, move them to compatible versions before they
start breaking entirely
  • Loading branch information
skizzerz committed Oct 19, 2023
1 parent dd5b0af commit 1e985f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
python: [ 3.9, "3.10", 3.11 ]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wiki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install Dependencies
Expand Down

0 comments on commit 1e985f0

Please sign in to comment.