Skip to content

Commit

Permalink
update versions of github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aerorahul committed Feb 28, 2024
1 parent de35804 commit 7b0b1dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pynorms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
name: Check Python coding norms

steps:
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install (upgrade) python dependencies (pycodestyle)
run: |
pip install --upgrade pip
pip install pycodestyle
- uses: actions/checkout@v3
- uses: pre-commit/action@v3.0.0
- uses: actions/checkout@v4
- uses: pre-commit/action@v3.0.1
6 changes: 3 additions & 3 deletions .github/workflows/pytests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

Expand All @@ -20,7 +20,7 @@ jobs:
pip install --upgrade pip
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install wxflow
run: |
Expand All @@ -33,4 +33,4 @@ jobs:
pytest -v
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

Expand Down

0 comments on commit 7b0b1dd

Please sign in to comment.