Skip to content

Commit

Permalink
Update actions version in the build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mfitz authored Dec 10, 2024
1 parent 20ca100 commit 85c0358
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.8
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: ~/.cache/pip-dev
key: ${{ runner.os }}-pip-${{ hashFiles('**/dev-requirements.txt') }}
Expand Down

0 comments on commit 85c0358

Please sign in to comment.