Skip to content

Commit

Permalink
update action versions in github pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
svirpioj committed Jun 20, 2024
1 parent 0a8c51e commit ccb8373
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 @@ -25,9 +25,9 @@ jobs:
requirements-file: ["requirements.txt"]
runs-on: ${{ matrix.os }}
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: Install dependencies
Expand All @@ -49,7 +49,7 @@ jobs:
needs: build-n-test
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check for main release tag
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
id: check-tag
Expand All @@ -59,7 +59,7 @@ jobs:
fi
- name: Set up Python 3.8
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install pypa/build
Expand Down Expand Up @@ -94,9 +94,9 @@ jobs:
runs-on: ubuntu-latest
needs: [build-n-test]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies to build docs
Expand Down

0 comments on commit ccb8373

Please sign in to comment.