Skip to content

Commit

Permalink
Bump used gh actions
Browse files Browse the repository at this point in the history
There are 16 deprecation warnings generated by gh actions today. We
better bump used versions to make sure things won't get broken
unexpectedly.
  • Loading branch information
ikalnytskyi committed May 7, 2024
1 parent cdff28d commit efb22c3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Publish to PyPI
env:
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up sources
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Run ruff
run: pipx run tox -e lint
Expand All @@ -33,10 +35,10 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Set up sources
uses: actions/checkout@v2
uses: actions/checkout@v4

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

Expand Down

0 comments on commit efb22c3

Please sign in to comment.