Skip to content

Commit

Permalink
Merge pull request #233 from jhlegarreta/FixGHActionsNodejsWarnings
Browse files Browse the repository at this point in the history
ENH: Fix workflow actions warnings linked to `Node.js`
  • Loading branch information
jhlegarreta committed Jun 29, 2024
2 parents 39a5475 + 718e966 commit 07932cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
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 }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fetch-depth: 0

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

Expand All @@ -33,7 +33,7 @@ jobs:
python -c "req = open('setup.py').read().replace(' >= ', ' == ') ; open('setup.py', 'w').write(req)"
# - name: Cache pip
# uses: actions/cache@v2
# uses: actions/cache@v4
# id: cache
# with:
# path: ${{ env.pythonLocation }}
Expand Down

0 comments on commit 07932cc

Please sign in to comment.