Skip to content

Commit

Permalink
Fix GHA deprecated action warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
justanr authored Oct 28, 2024
1 parent aebaf1d commit 985eda9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
python-version: ["3.8"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run checks
Expand All @@ -31,9 +31,9 @@ jobs:
python-version: ["3.x"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run checks
Expand All @@ -47,9 +47,9 @@ jobs:
python-version: ["3.x"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run checks
Expand Down

0 comments on commit 985eda9

Please sign in to comment.