Skip to content

Commit

Permalink
Update actions in CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jgosmann committed Oct 27, 2024
1 parent 95c59ce commit 9286367
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:
- python-version: "3.13"
pylint-version: ""
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

- uses: actions/cache@v3.0.11
- uses: actions/cache@v4.1.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
- uses: actions/cache@v3.0.11
- uses: actions/cache@v4.1.2
with:
path: .venv
key: ${{ runner.os }}-py${{ matrix.python-version }}-pylint${{ matrix.pylint-version }}-venv-${{ hashFiles('pyproject.toml') }}
Expand All @@ -61,14 +61,14 @@ jobs:
needs: [test]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/[email protected]
with:
python-version: '3.13'

- uses: actions/cache@v3.0.11
- uses: actions/cache@v4.1.2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
Expand Down

0 comments on commit 9286367

Please sign in to comment.