Skip to content

Commit

Permalink
Upgrade workflow actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanholek committed May 16, 2024
1 parent a987725 commit 61ebce6
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Check out project
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
run: python -m pip install -e .
Expand All @@ -52,7 +52,7 @@ jobs:

steps:
- name: Check out project
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install dependencies
run: python -m pip install -e .
Expand All @@ -73,10 +73,10 @@ jobs:

steps:
- name: Check out project
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 }}

Expand All @@ -99,10 +99,10 @@ jobs:

steps:
- name: Check out project
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 }}

Expand All @@ -115,7 +115,7 @@ jobs:
echo py=$(python -c'import sys; print("%d.%d" % sys.version_info[:2])')
- name: Cache pip
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-py${{ steps.pip-cache.outputs.py }}-${{ hashFiles('setup.cfg') }}
Expand Down

0 comments on commit 61ebce6

Please sign in to comment.