Skip to content

Commit

Permalink
ci(CI): bump action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Blaok committed Feb 29, 2024
1 parent 089a8ee commit 05d8135
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Expand Up @@ -13,19 +13,19 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Checkout myself
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install myself
run: python setup.py install
- name: Run unit tests
Expand All @@ -38,13 +38,13 @@ jobs:

steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install setuptools and wheel
run: pip install --upgrade setuptools wheel
- name: Checkout myself
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install myself
run: python setup.py install
- name: Run unit tests
Expand Down

0 comments on commit 05d8135

Please sign in to comment.