Skip to content

Commit

Permalink
Bump first-party actions used in CI workflows
Browse files Browse the repository at this point in the history
Suppress warnings about Node.js 16 deprecation.

- actions/checkout v3 → v4
- actions/setup-python v4 → v5
  • Loading branch information
khaeru committed Jan 29, 2024
1 parent 8a2aa91 commit b827ca2
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,12 @@ jobs:
# name: ${{ matrix.os }}-py${{ matrix.python-version }}-pandas${{ matrix.pandas-version }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: ${{ env.depth }}
fetch-tags: true

- name: Fetch tags (for setuptools-scm)
run: git fetch --tags --depth=${{ env.depth }}

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand Down Expand Up @@ -135,8 +133,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"

Expand Down

0 comments on commit b827ca2

Please sign in to comment.